Class Reference for E1039 Core & Analysis Software
PHG4StepStatusDecode.cc
Go to the documentation of this file.
1 #include "PHG4StepStatusDecode.h"
2 
3 #include <Geant4/G4StepStatus.hh>
4 
5 #include <iostream>
6 #include <map>
7 
8 using namespace std;
9 static map<int, string> stepstatus;
10 
11 string PHG4StepStatusDecode::GetStepStatus(const int istatus)
12 {
13  if (stepstatus.empty())
14  {
15  cout << "filling stepstatus map" << endl;
16  stepstatus[fWorldBoundary] = "fWorldBoundary";
17  stepstatus[fGeomBoundary] = "fGeomBoundary";
18  stepstatus[fAtRestDoItProc] = "fAtRestDoItProc";
19  stepstatus[fAlongStepDoItProc] = "fAlongStepDoItProc";
20  stepstatus[fPostStepDoItProc] = "fPostStepDoItProc";
21  stepstatus[fUserDefinedLimit] = "fUserDefinedLimit";
22  stepstatus[fExclusivelyForcedProc] = "fExclusivelyForcedProc";
23  stepstatus[fUndefined] = "fUndefined";
24  }
25  if (stepstatus.find(istatus) == stepstatus.end())
26  {
27  cout << "could not find status " << istatus << " in stepstatus map" << endl;
28  exit(1);
29  }
30  return stepstatus[istatus];
31 }
static map< int, string > stepstatus
std::string GetStepStatus(const int istatus)