CMS 3D CMS Logo

CaloParticle.cc
Go to the documentation of this file.
2 
4 
6 
8 
9 const unsigned int CaloParticle::longLivedTag = 65536;
10 
12  // No operation
13 }
14 
16  addG4Track(simtrk);
17  event_ = simtrk.eventId();
18  particleId_ = simtrk.trackId();
19  theMomentum_.SetPxPyPzE(
20  simtrk.momentum().px(), simtrk.momentum().py(), simtrk.momentum().pz(), simtrk.momentum().E());
21 }
22 
24  event_ = eventID;
26 }
27 
29 
30 std::ostream &operator<<(std::ostream &s, CaloParticle const &tp) {
31  s << "Calo Particle:" << std::endl;
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 (CaloParticle::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 (CaloParticle::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 CaloParticle and Geant types" << std::endl;
44  }
45  }
46  s << "SimClusters in this CaloParticle: " << std::endl;
47  for (auto itr = tp.simClusters_.begin(); itr != tp.simClusters_.end(); ++itr) {
48  s << **itr;
49  }
50  s << std::endl;
51  return s;
52 }
std::ostream & operator<<(std::ostream &s, CaloParticle const &tp)
Definition: CaloParticle.cc:30
void addG4Track(const SimTrack &t)
Definition: CaloParticle.h:61
EncodedEventId event_
Definition: CaloParticle.h:194
std::vector< SimTrack >::const_iterator g4t_iterator
Definition: CaloParticle.h:28
const math::XYZTLorentzVectorD & momentum() const
Definition: CoreSimTrack.h:19
math::XYZTLorentzVectorF theMomentum_
Definition: CaloParticle.h:201
EncodedEventId eventId() const
Definition: CoreSimTrack.h:28
static const unsigned int longLivedTag
long lived flag
Definition: CaloParticle.h:157
uint32_t particleId_
Definition: CaloParticle.h:196
unsigned int trackId() const
Definition: CoreSimTrack.h:31