![]() |
Precalibrated Ion Beam Identification Detector Simulation 1.0
A pilot study detector simulation, written in C++ with Geant4.
|
00001 00010 #include "globals.hh" 00011 #include "G4UnitsTable.hh" 00012 00013 #ifndef VECTOR 00014 #define VECTOR 1 00015 #include <vector> 00016 #endif 00017 00018 #ifndef EventHit_hh 00019 #define EventHit_hh 1 00020 00021 00022 00024 class EventHit 00025 { 00026 public: 00027 EventHit(G4int numberOfScintillatorTubes 00028 ,G4double defaultTime = 0 00029 ); 00030 00031 G4double time; 00032 G4double upperFrontScintillatorPanelEnergy; 00033 G4double lowerFrontScintillatorPanelEnergy; 00034 G4double backScintillatorPanelEnergy; 00035 G4double geDetectorEnergy; 00036 00037 std::vector<G4double> scintillatorTubeEnergies; 00038 00039 }; 00040 00041 #endif