Class Reference for E1039 Core & Analysis Software
PHG4TrackUserInfoV1.h
Go to the documentation of this file.
1 #ifndef PHG4TrackUserInfoV1_H__
2 #define PHG4TrackUserInfoV1_H__
3 
4 #include <Geant4/G4VUserTrackInformation.hh>
5 
6 class PHG4Shower;
7 
8 // Made this with "V1" in the name in case we ever want to inherit from
9 // it with other versions...
10 
11 // Use the UserTrackInformation to attach a flag telling the framework
12 // to save the track in the truth output. Other uses might include keeping
13 // track of the
14 
15 class PHG4TrackUserInfoV1 : public G4VUserTrackInformation
16 {
17 public:
18  PHG4TrackUserInfoV1() : G4VUserTrackInformation("TrackUserInfoV1"),
19  usertrackid(0), userparentid(0), userprimaryid(0),
20  wanted(0), keep(0) , shower(NULL) {}
21  virtual ~PHG4TrackUserInfoV1() {}
22 
23  void Print() const {
24  G4cout << "PHG4TrackUserInfoV1: " << std::endl;
25  G4cout << " UserTrackId = " << usertrackid << std::endl;
26  G4cout << " UserParentId = " << userparentid << std::endl;
27  G4cout << " UserPrimaryId = " << userprimaryid << std::endl;
28  G4cout << " Wanted = " << wanted << std::endl;
29  G4cout << " Keep = " << keep << std::endl;
30  }
31 
32  void SetUserTrackId(const int val) {usertrackid = val;}
33  int GetUserTrackId() const {return usertrackid;}
34 
35  void SetUserParentId(const int val) {userparentid = val;}
36  int GetUserParentId() const {return userparentid;}
37 
38  void SetUserPrimaryId(const int val) {userprimaryid = val;}
39  int GetUserPrimaryId() const {return userprimaryid;}
40 
41  void SetWanted(const int val) {wanted = val;}
42  int GetWanted() const {return wanted;}
43 
44  void SetKeep(const int val) {keep = val;}
45  int GetKeep() const {return keep;}
46 
47  void SetShower(PHG4Shower *ptr) {shower = ptr;}
48  PHG4Shower* GetShower() const {return shower;}
49 
50 private:
51  int usertrackid;
52  int userparentid;
53  int userprimaryid;
54  int wanted;
55  int keep;
56  PHG4Shower* shower;
57 };
58 
59 // Utility function to wrap up the operations involved with adding user info
60 // to the track.
61 class G4Track;
62 
63 namespace PHG4TrackUserInfo
64 {
65  void SetUserTrackId(G4Track* track, const int usertrackid);
66  void SetUserParentId(G4Track* track, const int userparentid);
67  void SetUserPrimaryId(G4Track* track, const int userprimaryid);
68  void SetWanted(G4Track* track, const int wanted);
69  void SetKeep(G4Track* track, const int keep);
70  void SetShower(G4Track* track, PHG4Shower* ptr);
71 };
72 
73 #endif
#define NULL
Definition: Pdb.h:9
PHG4Shower * GetShower() const
void SetUserTrackId(const int val)
void SetShower(PHG4Shower *ptr)
void SetUserParentId(const int val)
void SetUserPrimaryId(const int val)
void SetKeep(const int val)
void SetWanted(const int val)
void SetUserPrimaryId(G4Track *track, const int userprimaryid)
void SetWanted(G4Track *track, const int trkid)
void SetShower(G4Track *track, PHG4Shower *shower)
void SetUserTrackId(G4Track *track, const int usertrackid)
void SetKeep(G4Track *track, const int trkid)
void SetUserParentId(G4Track *track, const int userparentid)