13 #include "G4Electron.hh"
14 #include "G4Positron.hh"
15 #include "G4VProcess.hh"
16 #include "G4VPhysicalVolume.hh"
17 #include "G4LogicalVolume.hh"
18 #include "G4TransportationManager.hh"
19 #include "G4EventManager.hh"
20 #include "G4FastSimulationManager.hh"
21 #include "G4TouchableHandle.hh"
22 #include "G4VSensitiveDetector.hh"
23 #include "G4SystemOfUnits.hh"
28 : G4VFastSimulationModel(modelName, envelope), theParSet(parSet)
33 theRegion =
const_cast<const G4Region*
>(envelope);
52 return ( &particleType == G4Electron::Electron() ||
53 &particleType == G4Positron::Positron() );
60 if(fastTrack.GetPrimaryTrack()->GetKineticEnergy() < GeV) {
return false; }
65 G4TouchableHistory* touch =
66 (G4TouchableHistory*)(fastTrack.GetPrimaryTrack()->GetTouchable());
67 G4VPhysicalVolume* pCurrentVolume = touch->GetVolume();
68 if( pCurrentVolume == 0) {
return false; }
70 G4LogicalVolume* lv = pCurrentVolume->GetLogicalVolume();
71 if(lv->GetRegion() !=
theRegion) {
return false; }
93 fastStep.KillPrimaryTrack();
94 fastStep.ProposePrimaryTrackPathLength(0.0);
98 G4double
energy = fastTrack.GetPrimaryTrack()->GetKineticEnergy()/GeV;
100 fastTrack.GetPrimaryTrack()->GetStep()->GetPostStepPoint()->GetGlobalTime();
102 fastTrack.GetPrimaryTrack()->GetStep()->GetPreStepPoint()->GetCharge();
103 G4ThreeVector
position = fastTrack.GetPrimaryTrack()->GetPosition()/cm;
104 G4ThreeVector momentum = fastTrack.GetPrimaryTrack()->GetMomentum()/GeV;
122 theGflashStep->SetTrack(const_cast<G4Track*>(fastTrack.GetPrimaryTrack()));
125 ->SetProcessDefinedStep(const_cast<G4VProcess*>(fastTrack.GetPrimaryTrack()
126 ->GetStep()->GetPostStepPoint()->GetProcessDefinedStep()));
127 theGflashNavigator->SetWorldVolume(G4TransportationManager::GetTransportationManager()->GetNavigatorForTracking()->GetWorldVolume());
129 std::vector<GflashHit>::const_iterator spotIter = gflashHitList.begin();
130 std::vector<GflashHit>::const_iterator spotIterEnd = gflashHitList.end();
132 for(; spotIter != spotIterEnd; spotIter++){
148 G4VPhysicalVolume* aCurrentVolume =
150 if( aCurrentVolume == 0 ) {
continue; }
152 G4LogicalVolume* lv = aCurrentVolume->GetLogicalVolume();
153 if(lv->GetRegion() !=
theRegion) {
continue; }
155 theGflashStep->GetPreStepPoint()->SetSensitiveDetector(aCurrentVolume->GetLogicalVolume()->GetSensitiveDetector());
156 G4VSensitiveDetector* aSensitive =
theGflashStep->GetPreStepPoint()->GetSensitiveDetector();
158 if( aSensitive == 0 ) {
continue; }
169 theGflashStep->GetPostStepPoint()->SetGlobalTime(timeGlobal);
171 theGflashStep->GetPostStepPoint()->SetPosition(spotPosition);
178 G4bool isExcluded=
false;
182 G4double
eta = fastTrack.GetPrimaryTrack()->GetPosition().pseudoRapidity();
183 if(std::fabs(eta) > 1.392 && std::fabs(eta) < 1.566) {
return true; }
G4bool IsApplicable(const G4ParticleDefinition &)
T getParameter(std::string const &) const
G4bool ModelTrigger(const G4FastTrack &)
void makeHits(const G4FastTrack &fastTrack)
std::vector< GflashHit > & getGflashHitList()
G4TouchableHandle theGflashTouchableHandle
SimActivityRegistry::G4StepSignal m_g4StepSignal
void DoIt(const G4FastTrack &, G4FastStep &)
static int position[TOTALCHAMBERS][3]
GflashEMShowerProfile * theProfile
const G4Region * theRegion
void initialize(int showerType, double energy, double globalTime, double charge, Gflash3Vector &position, Gflash3Vector &momentum)
int findShowerType(const Gflash3Vector &position)
GFlashEMShowerModel(const G4String &name, G4Envelope *env, const edm::ParameterSet &parSet)
void updateGflashStep(const G4ThreeVector &position, G4double time)
G4bool excludeDetectorRegion(const G4FastTrack &fastTrack)
G4Navigator * theGflashNavigator
virtual ~GFlashEMShowerModel()