CMS 3D CMS Logo

RHStopTracer.cc
Go to the documentation of this file.
2 
9 
12 
13 #include "G4Track.hh"
14 #include "G4Run.hh"
15 #include "G4Event.hh"
16 #include "G4SystemOfUnits.hh"
17 #include "G4ParticleTable.hh"
18 #include "G4ParticleDefinition.hh"
19 
21  edm::ParameterSet parameters = p.getParameter<edm::ParameterSet>("RHStopTracer");
22  mStopRegular = parameters.getUntrackedParameter<bool>("stopRegularParticles", false);
23  mTraceEnergy = parameters.getUntrackedParameter<double>("traceEnergy", 1.e20);
24  mTraceParticleName = parameters.getParameter<std::string>("traceParticle");
25  minPdgId = parameters.getUntrackedParameter<int>("minPdgId", 1000000);
26  maxPdgId = parameters.getUntrackedParameter<int>("maxPdgId", 2000000);
27  otherPdgId = parameters.getUntrackedParameter<int>("otherPdgId", 17);
28  produces<std::vector<std::string> >("StoppedParticlesName");
29  produces<std::vector<float> >("StoppedParticlesX");
30  produces<std::vector<float> >("StoppedParticlesY");
31  produces<std::vector<float> >("StoppedParticlesZ");
32  produces<std::vector<float> >("StoppedParticlesTime");
33  produces<std::vector<int> >("StoppedParticlesPdgId");
34  produces<std::vector<float> >("StoppedParticlesMass");
35  produces<std::vector<float> >("StoppedParticlesCharge");
36 
37  mTraceEnergy *= CLHEP::GeV;
39  setMT(true);
40 
41  edm::LogVerbatim("SimG4CoreCustomPhysics")
42  << "RHStopTracer::RHStopTracer " << mTraceParticleName << " Eth(GeV)= " << mTraceEnergy;
43 }
44 
45 void RHStopTracer::update(const BeginOfRun* fRun) {
46  LogDebug("SimG4CoreCustomPhysics") << "RHStopTracer::update-> begin of the run " << (*fRun)()->GetRunID();
47 }
48 
50  LogDebug("SimG4CoreCustomPhysics") << "RHStopTracer::update-> begin of the event " << (*fEvent)()->GetEventID();
51 }
52 
53 void RHStopTracer::update(const BeginOfTrack* fTrack) {
54  const G4Track* track = (*fTrack)();
55  const G4ParticleDefinition* part = track->GetDefinition();
56  const std::string& stringPartName = part->GetParticleName();
57  bool matched = false;
58  int pdgid = std::abs(part->GetPDGEncoding());
59  if ((pdgid > minPdgId && pdgid < maxPdgId) || pdgid == otherPdgId)
60  matched = std::regex_match(stringPartName, rePartName);
61  if (matched || track->GetKineticEnergy() > mTraceEnergy) {
62  LogDebug("SimG4CoreCustomPhysics") << "RHStopTracer::update-> new track: ID/Name/pdgId/mass/charge/Parent: "
63  << track->GetTrackID() << '/' << part->GetParticleName() << '/'
64  << part->GetPDGEncoding() << '/' << part->GetPDGMass() / GeV << " GeV/"
65  << part->GetPDGCharge() << '/' << track->GetParentID()
66  << " Position: " << track->GetPosition() << ' '
67  << " R/phi: " << track->GetPosition().perp() << '/' << track->GetPosition().phi()
68  << " 4vec " << track->GetMomentum();
69  } else if (mStopRegular) { // kill regular particles
70  const_cast<G4Track*>(track)->SetTrackStatus(fStopAndKill);
71  }
72 }
73 
74 void RHStopTracer::update(const EndOfTrack* fTrack) {
75  const G4Track* track = (*fTrack)();
76  const G4ParticleDefinition* part = track->GetDefinition();
77  const std::string& stringPartName = part->GetParticleName();
78  bool matched = false;
79  int pdgid = std::abs(part->GetPDGEncoding());
80  if ((pdgid > minPdgId && pdgid < maxPdgId) || pdgid == otherPdgId)
81  matched = std::regex_match(stringPartName, rePartName);
82  if (matched || track->GetKineticEnergy() > mTraceEnergy) {
83  LogDebug("SimG4CoreCustomPhysics") << "RHStopTracer::update-> stop track: ID/Name/pdgId/mass/charge/Parent: "
84  << track->GetTrackID() << '/' << part->GetParticleName() << '/'
85  << part->GetPDGEncoding() << '/' << part->GetPDGMass() / GeV << " GeV/"
86  << part->GetPDGCharge() << '/' << track->GetParentID()
87  << " Position: " << track->GetPosition() << ' '
88  << " R/phi: " << track->GetPosition().perp() << '/' << track->GetPosition().phi()
89  << " 4vec " << track->GetMomentum();
90  if (track->GetMomentum().mag() < 0.001) {
91  LogDebug("SimG4CoreCustomPhysics") << "RHStopTracer:: track has stopped, so making StopPoint";
92  mStopPoints.push_back(StopPoint(track->GetDefinition()->GetParticleName(),
93  track->GetPosition().x(),
94  track->GetPosition().y(),
95  track->GetPosition().z(),
96  track->GetGlobalTime(),
97  track->GetDefinition()->GetPDGEncoding(),
98  track->GetDefinition()->GetPDGMass() / GeV,
99  track->GetDefinition()->GetPDGCharge()));
100  }
101  }
102 }
103 
105  LogDebug("SimG4CoreCustomPhysics") << "RHStopTracer::produce->";
106 
107  std::unique_ptr<std::vector<std::string> > names(new std::vector<std::string>);
108  std::unique_ptr<std::vector<float> > xs(new std::vector<float>);
109  std::unique_ptr<std::vector<float> > ys(new std::vector<float>);
110  std::unique_ptr<std::vector<float> > zs(new std::vector<float>);
111  std::unique_ptr<std::vector<float> > ts(new std::vector<float>);
112  std::unique_ptr<std::vector<int> > ids(new std::vector<int>);
113  std::unique_ptr<std::vector<float> > masses(new std::vector<float>);
114  std::unique_ptr<std::vector<float> > charges(new std::vector<float>);
115 
116  std::vector<StopPoint>::const_iterator stopPoint = mStopPoints.begin();
117  for (; stopPoint != mStopPoints.end(); ++stopPoint) {
118  names->push_back(stopPoint->name);
119  xs->push_back(stopPoint->x);
120  ys->push_back(stopPoint->y);
121  zs->push_back(stopPoint->z);
122  ts->push_back(stopPoint->t);
123  ids->push_back(stopPoint->id);
124  masses->push_back(stopPoint->mass);
125  charges->push_back(stopPoint->charge);
126  }
127  fEvent.put(std::move(names), "StoppedParticlesName");
128  fEvent.put(std::move(xs), "StoppedParticlesX");
129  fEvent.put(std::move(ys), "StoppedParticlesY");
130  fEvent.put(std::move(zs), "StoppedParticlesZ");
131  fEvent.put(std::move(ts), "StoppedParticlesTime");
132  fEvent.put(std::move(ids), "StoppedParticlesPdgId");
133  fEvent.put(std::move(masses), "StoppedParticlesMass");
134  fEvent.put(std::move(charges), "StoppedParticlesCharge");
135  mStopPoints.clear();
136 }
Log< level::Info, true > LogVerbatim
void setMT(bool val)
Definition: SimWatcher.h:47
const std::string names[nVars_]
void produce(edm::Event &, const edm::EventSetup &) override
void update(const BeginOfRun *) override
This routine will be called when the appropriate signal arrives.
Definition: RHStopTracer.cc:45
double mTraceEnergy
Definition: RHStopTracer.h:47
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
std::string mTraceParticleName
Definition: RHStopTracer.h:51
RHStopTracer(edm::ParameterSet const &p)
Definition: RHStopTracer.cc:20
bool mStopRegular
Definition: RHStopTracer.h:46
part
Definition: HCALResponse.h:20
std::regex rePartName
Definition: RHStopTracer.h:52
charges
only generated particles of these IDs are considered
std::vector< StopPoint > mStopPoints
Definition: RHStopTracer.h:53
def move(src, dest)
Definition: eostools.py:511
#define LogDebug(id)