CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
G4TrackToParticleID.cc
Go to the documentation of this file.
2 
3 #include "G4Track.hh"
4 
6 
7 int G4TrackToParticleID::particleID(const G4Track * g4trk)
8 {
9  int particleID_ = g4trk->GetDefinition()->GetPDGEncoding();
10 #ifdef DebugLog
11  if ( particleID_ > 1000000000 ) {
12  LogDebug("SimG4CoreNotification") << "G4TrackToParticleID ion code = " << particleID_ ;
13  }
14 #endif
15  if (particleID_ != 0) return particleID_;
16  edm::LogWarning("SimG4CoreNotification") << "G4TrackToParticleID: unknown code for track Id = " << g4trk->GetTrackID();
17  return -99;
18 }
#define LogDebug(id)
static int particleID(const G4Track *)