CMS 3D CMS Logo

SimCluster.cc
Go to the documentation of this file.
2 
4 
6 
7 #include <numeric>
8 
9 const unsigned int SimCluster::longLivedTag = 65536;
10 
12  // No operation
13 }
14 
16  addG4Track(simtrk);
17  event_ = simtrk.eventId();
18  particleId_ = simtrk.trackId();
19 
20  theMomentum_.SetPxPyPzE(
21  simtrk.momentum().px(), simtrk.momentum().py(), simtrk.momentum().pz(), simtrk.momentum().E());
22 }
23 
25  event_ = eventID;
27 }
28 
30 
31 std::ostream &operator<<(std::ostream &s, SimCluster const &tp) {
32  s << "CP momentum, q, ID, & Event #: " << tp.p4() << " " << tp.charge() << " " << tp.pdgId() << " "
33  << tp.eventId().bunchCrossing() << "." << tp.eventId().event() << std::endl;
34 
35  for (SimCluster::genp_iterator hepT = tp.genParticle_begin(); hepT != tp.genParticle_end(); ++hepT) {
36  s << " HepMC Track Momentum " << (*hepT)->momentum().rho() << std::endl;
37  }
38 
39  for (SimCluster::g4t_iterator g4T = tp.g4Track_begin(); g4T != tp.g4Track_end(); ++g4T) {
40  s << " Geant Track Momentum " << g4T->momentum() << std::endl;
41  s << " Geant Track ID & type " << g4T->trackId() << " " << g4T->type() << std::endl;
42  if (g4T->type() != tp.pdgId()) {
43  s << " Mismatch b/t SimCluster and Geant types" << std::endl;
44  }
45  }
46  s << " # of cells = " << tp.hits_.size()
47  << ", effective cells = " << std::accumulate(tp.fractions_.begin(), tp.fractions_.end(), 0.f) << std::endl;
48  return s;
49 }
void addG4Track(const SimTrack &t)
Definition: SimCluster.h:72
EncodedEventId event_
Definition: SimCluster.h:223
std::vector< SimTrack >::const_iterator g4t_iterator
Definition: SimCluster.h:41
const math::XYZTLorentzVectorD & momentum() const
Definition: CoreSimTrack.h:19
EncodedEventId eventId() const
Definition: CoreSimTrack.h:28
std::ostream & operator<<(std::ostream &s, SimCluster const &tp)
Definition: SimCluster.cc:31
Monte Carlo truth information used for tracking validation.
Definition: SimCluster.h:29
unsigned int trackId() const
Definition: CoreSimTrack.h:31
uint32_t particleId_
Definition: SimCluster.h:225
static const unsigned int longLivedTag
long lived flag
Definition: SimCluster.h:163
math::XYZTLorentzVectorF theMomentum_
Definition: SimCluster.h:231