Class Reference for E1039 Core & Analysis Software
PHG4TrackStatusDecode.cc
Go to the documentation of this file.
2 
3 #include <Geant4/G4TrackStatus.hh>
4 
5 #include <iostream>
6 #include <map>
7 
8 using namespace std;
9 static map<int, string> trackstatus;
10 
11 string PHG4TrackStatusDecode::GetTrackStatus(const int istatus)
12 {
13  if (trackstatus.empty())
14  {
15  cout << "filling trackstatus map" << endl;
16  trackstatus[fAlive] = "fAlive";
17  trackstatus[fStopButAlive] = "fStopButAlive";
18  trackstatus[fStopAndKill] = "fStopAndKill";
19  trackstatus[fKillTrackAndSecondaries] = "fKillTrackAndSecondaries";
20  trackstatus[fSuspend] = "fSuspend";
21  trackstatus[fPostponeToNextEvent] = "fPostponeToNextEvent";
22  }
23  if (trackstatus.find(istatus) == trackstatus.end())
24  {
25  cout << "could not find status " << istatus << " in trackstatus map" << endl;
26  exit(1);
27  }
28  return trackstatus[istatus];
29 }
static map< int, string > trackstatus
std::string GetTrackStatus(const int istatus)