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 =
reinterpret_cast<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();
78 fastStep.KillPrimaryTrack();
79 fastStep.ProposePrimaryTrackPathLength(0.0);
83 G4double
energy = fastTrack.GetPrimaryTrack()->GetKineticEnergy() / GeV;
84 G4double globalTime = fastTrack.GetPrimaryTrack()->GetStep()->GetPostStepPoint()->GetGlobalTime();
85 G4double
charge = fastTrack.GetPrimaryTrack()->GetStep()->GetPreStepPoint()->GetCharge();
86 G4ThreeVector
position = fastTrack.GetPrimaryTrack()->GetPosition() / cm;
87 G4ThreeVector momentum = fastTrack.GetPrimaryTrack()->GetMomentum() / GeV;
103 theGflashStep->SetTrack(const_cast<G4Track*>(fastTrack.GetPrimaryTrack()));
106 const_cast<G4VProcess*>(fastTrack.GetPrimaryTrack()->GetStep()->GetPostStepPoint()->GetProcessDefinedStep()));
108 G4TransportationManager::GetTransportationManager()->GetNavigatorForTracking()->GetWorldVolume());
110 std::vector<GflashHit>::const_iterator spotIter = gflashHitList.begin();
111 std::vector<GflashHit>::const_iterator spotIterEnd = gflashHitList.end();
113 for (; spotIter != spotIterEnd; ++spotIter) {
129 G4VPhysicalVolume* aCurrentVolume =
theGflashStep->GetPreStepPoint()->GetPhysicalVolume();
130 if (aCurrentVolume ==
nullptr) {
134 G4LogicalVolume* lv = aCurrentVolume->GetLogicalVolume();
139 theGflashStep->GetPreStepPoint()->SetSensitiveDetector(aCurrentVolume->GetLogicalVolume()->GetSensitiveDetector());
140 G4VSensitiveDetector* aSensitive =
theGflashStep->GetPreStepPoint()->GetSensitiveDetector();
142 if (aSensitive ==
nullptr) {
153 theGflashStep->GetPostStepPoint()->SetGlobalTime(timeGlobal);
155 theGflashStep->GetPostStepPoint()->SetPosition(spotPosition);
163 G4double
eta = fastTrack.GetPrimaryTrack()->GetPosition().pseudoRapidity();
164 return (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
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