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) {
32 theRegion =
const_cast<const G4Region*
>(envelope);
62 const G4TouchableHistory* touch =
static_cast<const G4TouchableHistory*
>(fastTrack.GetPrimaryTrack()->GetTouchable());
63 const G4VPhysicalVolume* pCurrentVolume = touch->GetVolume();
64 if (pCurrentVolume ==
nullptr) {
68 const G4LogicalVolume* lv = pCurrentVolume->GetLogicalVolume();
90 fastStep.KillPrimaryTrack();
91 fastStep.ProposePrimaryTrackPathLength(0.0);
95 G4double
energy = fastTrack.GetPrimaryTrack()->GetKineticEnergy() /
GeV;
96 G4double globalTime = fastTrack.GetPrimaryTrack()->GetStep()->GetPostStepPoint()->GetGlobalTime();
97 G4double
charge = fastTrack.GetPrimaryTrack()->GetStep()->GetPreStepPoint()->GetCharge();
98 G4ThreeVector
position = fastTrack.GetPrimaryTrack()->GetPosition() / cm;
99 G4ThreeVector momentum = fastTrack.GetPrimaryTrack()->GetMomentum() /
GeV;
115 theGflashStep->SetTrack(const_cast<G4Track*>(fastTrack.GetPrimaryTrack()));
118 const_cast<G4VProcess*>(fastTrack.GetPrimaryTrack()->GetStep()->GetPostStepPoint()->GetProcessDefinedStep()));
120 G4TransportationManager::GetTransportationManager()->GetNavigatorForTracking()->GetWorldVolume());
122 std::vector<GflashHit>::const_iterator spotIter = gflashHitList.begin();
123 std::vector<GflashHit>::const_iterator spotIterEnd = gflashHitList.end();
125 for (; spotIter != spotIterEnd; spotIter++) {
141 G4VPhysicalVolume* aCurrentVolume =
theGflashStep->GetPreStepPoint()->GetPhysicalVolume();
142 if (aCurrentVolume ==
nullptr) {
146 G4LogicalVolume* lv = aCurrentVolume->GetLogicalVolume();
151 theGflashStep->GetPreStepPoint()->SetSensitiveDetector(aCurrentVolume->GetLogicalVolume()->GetSensitiveDetector());
152 G4VSensitiveDetector* aSensitive =
theGflashStep->GetPreStepPoint()->GetSensitiveDetector();
154 if (aSensitive ==
nullptr) {
165 theGflashStep->GetPostStepPoint()->SetGlobalTime(timeGlobal);
167 theGflashStep->GetPostStepPoint()->SetPosition(spotPosition);
173 G4bool isExcluded =
false;
177 G4double
eta = fastTrack.GetPrimaryTrack()->GetPosition().pseudoRapidity();
178 if (std::fabs(eta) > 1.392 && std::fabs(eta) < 1.566) {
T getParameter(std::string const &) const
void makeHits(const G4FastTrack &fastTrack)
std::vector< GflashHit > & getGflashHitList()
G4TouchableHandle theGflashTouchableHandle
SimActivityRegistry::G4StepSignal m_g4StepSignal
void DoIt(const G4FastTrack &, G4FastStep &) override
~GFlashEMShowerModel() override
GflashEMShowerProfile * theProfile
const G4Region * theRegion
void initialize(int showerType, double energy, double globalTime, double charge, Gflash3Vector &position, Gflash3Vector &momentum)
const double energyCutOff
G4bool IsApplicable(const G4ParticleDefinition &) override
int findShowerType(const Gflash3Vector &position)
GFlashEMShowerModel(const G4String &name, G4Envelope *env, const edm::ParameterSet &parSet)
G4bool ModelTrigger(const G4FastTrack &) override
static int position[264][3]
void updateGflashStep(const G4ThreeVector &position, G4double time)
G4bool excludeDetectorRegion(const G4FastTrack &fastTrack)
G4Navigator * theGflashNavigator