26 lines
608 B
C++
26 lines
608 B
C++
|
|
#include "DetectorConstruction.hh"
|
|
|
|
#include "Core/Object.h"
|
|
#include "Math/ContainerBox.h"
|
|
|
|
#include "G4Box.hh"
|
|
#include "G4LogicalVolume.hh"
|
|
#include "G4NistManager.hh"
|
|
#include "G4PVPlacement.hh"
|
|
#include "G4RunManager.hh"
|
|
#include "G4SystemOfUnits.hh"
|
|
|
|
namespace uLib {
|
|
namespace Geant {
|
|
|
|
DetectorConstruction::DetectorConstruction(const char *name) : G4VUserDetectorConstruction() {}
|
|
|
|
DetectorConstruction::~DetectorConstruction() {}
|
|
|
|
G4VPhysicalVolume *DetectorConstruction::Construct() { return nullptr; }
|
|
|
|
void DetectorConstruction::ConstructSDandField() {}
|
|
|
|
} // namespace Geant
|
|
} // namespace uLib
|