Class Reference for E1039 Core & Analysis Software
PHG4Shower.h
Go to the documentation of this file.
1 #ifndef PHG4SHOWER_H__
2 #define PHG4SHOWER_H__
3 
4 #include "PHG4HitDefs.h"
5 
6 #include <phool/PHObject.h>
7 #include <cmath> // for NAN def
8 #include <set>
9 #include <map>
10 #include <iostream>
11 
12 class PHG4Shower : public PHObject {
13 
14 public:
15 
16  typedef std::set<int> ParticleIdSet;
17  typedef ParticleIdSet::iterator ParticleIdIter;
18  typedef ParticleIdSet::const_iterator ParticleIdConstIter;
19 
20  typedef std::set<int> VertexIdSet;
21  typedef VertexIdSet::iterator VertexIdIter;
22  typedef VertexIdSet::const_iterator VertexIdConstIter;
23 
24  typedef std::map<int,std::set<PHG4HitDefs::keytype> > HitIdMap;
25  typedef HitIdMap::iterator HitIdIter;
26  typedef HitIdMap::const_iterator HitIdConstIter;
27 
28  virtual ~PHG4Shower() {}
29 
30  // PHObject virtual overloads
31 
32  virtual void identify(std::ostream& os = std::cout) const {os << "PHG4Shower base class" << std::endl;}
33  virtual PHG4Shower* Clone() const {return NULL;}
34  virtual void Reset() {}
35  virtual int isValid() const {return 0;}
36 
37  // shower info
38 
39  virtual int get_id() const {return 0;}
40  virtual void set_id(int id) {}
41 
42  virtual int get_parent_particle_id() const {return 0;}
43  virtual void set_parent_particle_id(int parent_particle_id) {}
44 
45  virtual int get_parent_shower_id() const {return 0;}
46  virtual void set_parent_shower_id(int parent_shower_id) {}
47 
48  virtual float get_x() const {return NAN;}
49  virtual void set_x(float x) {}
50 
51  virtual float get_y() const {return NAN;}
52  virtual void set_y(float y) {}
53 
54  virtual float get_z() const {return NAN;}
55  virtual void set_z(float x) {}
56 
57  virtual float get_position(unsigned int coor) const {return NAN;}
58  virtual void set_position(unsigned int coor, float xi) {}
59 
60  virtual float get_covar(unsigned int i, unsigned int j) const {return NAN;}
61  virtual void set_covar(unsigned int i, unsigned int j, float entry) {}
62 
63  virtual unsigned int get_nhits(int volume) const {return 0;}
64  virtual void set_nhits(int volume, unsigned int nhits) {}
65 
66  virtual float get_edep(int volume) const {return NAN;}
67  virtual void set_edep(int volume, float edep) {}
68 
69  virtual float get_eion(int volume) const {return NAN;}
70  virtual void set_eion(int volume, float eion) {}
71 
72  virtual float get_light_yield(int volume) const {return NAN;}
73  virtual void set_light_yield(int volume, float light_yield) {}
74 
75  virtual float get_eh_ratio(int volume) const {return NAN;}
76  virtual void set_eh_ratio(int volume, float eh_ratio) {}
77 
78  virtual bool empty_g4particle_id() const {return true;}
79  virtual size_t size_g4particle_id() const {return 0;}
80  virtual void add_g4particle_id(int id) {}
81  virtual ParticleIdIter begin_g4particle_id() {return ParticleIdSet().end();}
82  virtual ParticleIdConstIter begin_g4particle_id() const {return ParticleIdSet().end();}
83  virtual ParticleIdIter end_g4particle_id() {return ParticleIdSet().end();}
84  virtual ParticleIdConstIter end_g4particle_id() const {return ParticleIdSet().end();}
85  virtual size_t remove_g4particle_id(int id) {return 0;}
86  virtual void clear_g4particle_id() {}
87 
88  virtual bool empty_g4vertex_id() const {return true;}
89  virtual size_t size_g4vertex_id() const {return 0;}
90  virtual void add_g4vertex_id(int id) {}
91  virtual VertexIdIter begin_g4vertex_id() {return VertexIdSet().end();}
92  virtual VertexIdConstIter begin_g4vertex_id() const {return VertexIdSet().end();}
93  virtual VertexIdIter end_g4vertex_id() {return VertexIdSet().end();}
94  virtual VertexIdConstIter end_g4vertex_id() const {return VertexIdSet().end();}
95  virtual size_t remove_g4vertex_id(int id) {return 0;}
96  virtual void clear_g4vertex_id() {}
97 
98  virtual bool empty_g4hit_id() const {return true;}
99  virtual size_t size_g4hit_id() const {return 0;}
100  virtual void add_g4hit_id(int volume, PHG4HitDefs::keytype id) {}
101  virtual HitIdIter begin_g4hit_id() {return HitIdMap().end();}
102  virtual HitIdConstIter begin_g4hit_id() const {return HitIdMap().end();}
103  virtual HitIdIter find_g4hit_id(int volume) {return HitIdMap().end();}
104  virtual HitIdConstIter find_g4hit_id(int volume) const {return HitIdMap().end();}
105  virtual HitIdIter end_g4hit_id() {return HitIdMap().end();}
106  virtual HitIdConstIter end_g4hit_id() const {return HitIdMap().end();}
107  virtual size_t remove_g4hit_id(int volume, PHG4HitDefs::keytype id) {return 0;}
108  virtual size_t remove_g4hit_volume(int volume) {return 0;}
109  virtual void clear_g4hit_id() {}
110 
111 protected:
113 
114 private:
115 
116  ClassDef(PHG4Shower, 1);
117 };
118 
119 #endif
#define NULL
Definition: Pdb.h:9
virtual float get_edep(int volume) const
Definition: PHG4Shower.h:66
HitIdMap::const_iterator HitIdConstIter
Definition: PHG4Shower.h:26
virtual ParticleIdIter begin_g4particle_id()
Definition: PHG4Shower.h:81
virtual VertexIdConstIter end_g4vertex_id() const
Definition: PHG4Shower.h:94
virtual int get_parent_particle_id() const
Definition: PHG4Shower.h:42
ParticleIdSet::iterator ParticleIdIter
Definition: PHG4Shower.h:17
virtual int get_parent_shower_id() const
Definition: PHG4Shower.h:45
virtual float get_covar(unsigned int i, unsigned int j) const
Definition: PHG4Shower.h:60
virtual void set_y(float y)
Definition: PHG4Shower.h:52
virtual VertexIdIter end_g4vertex_id()
Definition: PHG4Shower.h:93
virtual void set_eh_ratio(int volume, float eh_ratio)
Definition: PHG4Shower.h:76
HitIdMap::iterator HitIdIter
Definition: PHG4Shower.h:25
virtual size_t size_g4vertex_id() const
Definition: PHG4Shower.h:89
virtual void add_g4particle_id(int id)
Definition: PHG4Shower.h:80
virtual void set_id(int id)
Definition: PHG4Shower.h:40
virtual void set_eion(int volume, float eion)
Definition: PHG4Shower.h:70
std::set< int > VertexIdSet
Definition: PHG4Shower.h:20
virtual void set_position(unsigned int coor, float xi)
Definition: PHG4Shower.h:58
virtual bool empty_g4particle_id() const
Definition: PHG4Shower.h:78
std::set< int > ParticleIdSet
Definition: PHG4Shower.h:16
virtual size_t size_g4particle_id() const
Definition: PHG4Shower.h:79
virtual void set_parent_particle_id(int parent_particle_id)
Definition: PHG4Shower.h:43
virtual float get_eh_ratio(int volume) const
Definition: PHG4Shower.h:75
virtual void set_parent_shower_id(int parent_shower_id)
Definition: PHG4Shower.h:46
virtual void identify(std::ostream &os=std::cout) const
Definition: PHG4Shower.h:32
virtual void add_g4vertex_id(int id)
Definition: PHG4Shower.h:90
VertexIdSet::iterator VertexIdIter
Definition: PHG4Shower.h:21
virtual HitIdConstIter find_g4hit_id(int volume) const
Definition: PHG4Shower.h:104
virtual int get_id() const
Definition: PHG4Shower.h:39
virtual float get_x() const
Definition: PHG4Shower.h:48
virtual void set_x(float x)
Definition: PHG4Shower.h:49
virtual ParticleIdConstIter end_g4particle_id() const
Definition: PHG4Shower.h:84
virtual HitIdConstIter begin_g4hit_id() const
Definition: PHG4Shower.h:102
virtual VertexIdConstIter begin_g4vertex_id() const
Definition: PHG4Shower.h:92
virtual bool empty_g4hit_id() const
Definition: PHG4Shower.h:98
virtual void set_z(float x)
Definition: PHG4Shower.h:55
ParticleIdSet::const_iterator ParticleIdConstIter
Definition: PHG4Shower.h:18
virtual size_t remove_g4hit_volume(int volume)
Definition: PHG4Shower.h:108
std::map< int, std::set< PHG4HitDefs::keytype > > HitIdMap
Definition: PHG4Shower.h:24
virtual HitIdConstIter end_g4hit_id() const
Definition: PHG4Shower.h:106
virtual ~PHG4Shower()
Definition: PHG4Shower.h:28
virtual size_t remove_g4hit_id(int volume, PHG4HitDefs::keytype id)
Definition: PHG4Shower.h:107
virtual HitIdIter find_g4hit_id(int volume)
Definition: PHG4Shower.h:103
virtual void clear_g4vertex_id()
Definition: PHG4Shower.h:96
virtual size_t remove_g4particle_id(int id)
Definition: PHG4Shower.h:85
virtual VertexIdIter begin_g4vertex_id()
Definition: PHG4Shower.h:91
virtual bool empty_g4vertex_id() const
Definition: PHG4Shower.h:88
virtual void set_light_yield(int volume, float light_yield)
Definition: PHG4Shower.h:73
virtual float get_position(unsigned int coor) const
Definition: PHG4Shower.h:57
virtual void set_covar(unsigned int i, unsigned int j, float entry)
Definition: PHG4Shower.h:61
virtual void clear_g4hit_id()
Definition: PHG4Shower.h:109
virtual void clear_g4particle_id()
Definition: PHG4Shower.h:86
virtual void Reset()
Clear Event.
Definition: PHG4Shower.h:34
virtual ParticleIdConstIter begin_g4particle_id() const
Definition: PHG4Shower.h:82
virtual HitIdIter begin_g4hit_id()
Definition: PHG4Shower.h:101
virtual size_t remove_g4vertex_id(int id)
Definition: PHG4Shower.h:95
virtual float get_eion(int volume) const
Definition: PHG4Shower.h:69
virtual ParticleIdIter end_g4particle_id()
Definition: PHG4Shower.h:83
virtual float get_y() const
Definition: PHG4Shower.h:51
virtual float get_z() const
Definition: PHG4Shower.h:54
virtual void set_nhits(int volume, unsigned int nhits)
Definition: PHG4Shower.h:64
VertexIdSet::const_iterator VertexIdConstIter
Definition: PHG4Shower.h:22
virtual PHG4Shower * Clone() const
Definition: PHG4Shower.h:33
virtual void set_edep(int volume, float edep)
Definition: PHG4Shower.h:67
virtual float get_light_yield(int volume) const
Definition: PHG4Shower.h:72
virtual int isValid() const
isValid returns non zero if object contains vailid data
Definition: PHG4Shower.h:35
virtual unsigned int get_nhits(int volume) const
Definition: PHG4Shower.h:63
virtual HitIdIter end_g4hit_id()
Definition: PHG4Shower.h:105
virtual size_t size_g4hit_id() const
Definition: PHG4Shower.h:99
virtual void add_g4hit_id(int volume, PHG4HitDefs::keytype id)
Definition: PHG4Shower.h:100
unsigned int keytype
Definition: PHG4HitDefs.h:8