diff options
Diffstat (limited to 'include/G4BeamTestDetectorConstruction.h')
| -rw-r--r-- | include/G4BeamTestDetectorConstruction.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/G4BeamTestDetectorConstruction.h b/include/G4BeamTestDetectorConstruction.h index ce53256..a3c0c9f 100644 --- a/include/G4BeamTestDetectorConstruction.h +++ b/include/G4BeamTestDetectorConstruction.h @@ -4,7 +4,7 @@ #include <G4VUserDetectorConstruction.hh> #include <G4ThreeVector.hh> -// class G4BeamTestTank; +#include "G4BeamTestTank.h"; class G4BeamTestDetectorConstruction: public G4VUserDetectorConstruction { @@ -17,7 +17,7 @@ class G4BeamTestDetectorConstruction: public G4VUserDetectorConstruction void SetVerboseLevel(G4int level) {verboseLevel_=level;} - /* void InstallTank(G4BeamTestTank* tank) {tankList_.push_back(tank);} */ + void InstallTank(G4BeamTestTank* tank) {tank_ = tank;} const G4ThreeVector& GetWorldOrigin() const {return origin_;} @@ -39,7 +39,7 @@ class G4BeamTestDetectorConstruction: public G4VUserDetectorConstruction G4int verboseLevel_; - // std::vector<G4BeamTestTank*> tankList_; + G4BeamTestTank* tank_; }; #endif |
