Class Reference for E1039 Core & Analysis Software
PHG4UserPrimaryParticleInformation.h
Go to the documentation of this file.
1 #ifndef PHG4UserPrimaryParticleInformation_H__
2 #define PHG4UserPrimaryParticleInformation_H__
3 
4 #include <Geant4/G4VUserPrimaryParticleInformation.hh>
5 #include <iostream>
6 
7 class PHG4UserPrimaryParticleInformation : public G4VUserPrimaryParticleInformation
8 {
9 public:
11  embed(emb),
12  usertrackid(0),
13  uservtxid(0),
14  barcode(-1) {}
15 
16  void Print() const
17  {
18  std::cout << "Embedding = " << embed << std::endl;
19  std::cout << "User Track ID = " << usertrackid << std::endl;
20  std::cout << "User Vertex ID = " << uservtxid << std::endl;
21  }
22  int get_embed() const {return embed;}
23 
24  void set_user_track_id(int val) {usertrackid = val;}
25  int get_user_track_id() const {return usertrackid;}
26 
27  void set_user_vtx_id(int val) {uservtxid = val;}
28  int get_user_vtx_id() const {return uservtxid;}
29 
30  void set_user_barcode(int bcd) {barcode = bcd;}
31  int get_user_barcode() const {return barcode;}
32 
33 private:
34  int embed;
35  int usertrackid;
36  int uservtxid;
37  int barcode;
38 };
39 
40 #endif