![]() |
Precalibrated Ion Beam Identification Detector Simulation 1.0
A pilot study detector simulation, written in C++ with Geant4.
|
00001 #include "EventHit.hh" 00002 00003 EventHit::EventHit(G4int numberOfScintillatorTubes, G4double defaultTime) 00004 { 00005 scintillatorTubeEnergies = std::vector<G4double>(numberOfScintillatorTubes,0); 00006 time=defaultTime; 00007 upperFrontScintillatorPanelEnergy = 0; 00008 lowerFrontScintillatorPanelEnergy = 0; 00009 backScintillatorPanelEnergy = 0; 00010 geDetectorEnergy = 0; 00011 }