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"
27 : G4VFastSimulationModel(modelName, envelope), theParSet(parSet)
32 theRegion =
const_cast<const G4Region*
>(envelope);
51 return ( &particleType == G4Electron::Electron() ||
52 &particleType == G4Positron::Positron() );
59 if(fastTrack.GetPrimaryTrack()->GetKineticEnergy() < GeV) {
return false; }
64 G4TouchableHistory* touch =
65 (G4TouchableHistory*)(fastTrack.GetPrimaryTrack()->GetTouchable());
66 G4VPhysicalVolume* pCurrentVolume = touch->GetVolume();
67 if( pCurrentVolume == 0) {
return false; }
69 G4LogicalVolume* lv = pCurrentVolume->GetLogicalVolume();
70 if(lv->GetRegion() !=
theRegion) {
return false; }
92 fastStep.KillPrimaryTrack();
93 fastStep.ProposePrimaryTrackPathLength(0.0);
97 G4double
energy = fastTrack.GetPrimaryTrack()->GetKineticEnergy()/GeV;
99 fastTrack.GetPrimaryTrack()->GetStep()->GetPostStepPoint()->GetGlobalTime();
101 fastTrack.GetPrimaryTrack()->GetStep()->GetPreStepPoint()->GetCharge();
102 G4ThreeVector
position = fastTrack.GetPrimaryTrack()->GetPosition()/cm;
103 G4ThreeVector momentum = fastTrack.GetPrimaryTrack()->GetMomentum()/GeV;
121 theGflashStep->SetTrack(const_cast<G4Track*>(fastTrack.GetPrimaryTrack()));
124 ->SetProcessDefinedStep(const_cast<G4VProcess*>(fastTrack.GetPrimaryTrack()
125 ->GetStep()->GetPostStepPoint()->GetProcessDefinedStep()));
126 theGflashNavigator->SetWorldVolume(G4TransportationManager::GetTransportationManager()->GetNavigatorForTracking()->GetWorldVolume());
128 std::vector<GflashHit>::const_iterator spotIter = gflashHitList.begin();
129 std::vector<GflashHit>::const_iterator spotIterEnd = gflashHitList.end();
131 for(; spotIter != spotIterEnd; spotIter++){
147 G4VPhysicalVolume* aCurrentVolume =
149 if( aCurrentVolume == 0 ) {
continue; }
151 G4LogicalVolume* lv = aCurrentVolume->GetLogicalVolume();
152 if(lv->GetRegion() !=
theRegion) {
continue; }
154 theGflashStep->GetPreStepPoint()->SetSensitiveDetector(aCurrentVolume->GetLogicalVolume()->GetSensitiveDetector());
155 G4VSensitiveDetector* aSensitive =
theGflashStep->GetPreStepPoint()->GetSensitiveDetector();
157 if( aSensitive == 0 ) {
continue; }
168 theGflashStep->GetPostStepPoint()->SetGlobalTime(timeGlobal);
170 theGflashStep->GetPostStepPoint()->SetPosition(spotPosition);
177 G4bool isExcluded=
false;
181 G4double
eta = fastTrack.GetPrimaryTrack()->GetPosition().pseudoRapidity();
182 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]
int findShowerType(const Gflash3Vector position)
GflashEMShowerProfile * theProfile
const G4Region * theRegion
void initialize(int showerType, double energy, double globalTime, double charge, Gflash3Vector &position, Gflash3Vector &momentum)
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()