Class Reference for E1039 Core & Analysis Software
PHG4EventHeaderv1.h
Go to the documentation of this file.
1 #ifndef PHG4EVENTHEADERV1_H
2 #define PHG4EVENTHEADERV1_H
3 
4 #include "PHG4EventHeader.h"
5 
6 #include <phool/phool.h>
7 
8 #include <cmath>
9 #include <iostream>
10 
13 {
14  public:
15 
17 
19  virtual ~PHG4EventHeaderv1() {}
20 
22  virtual void Reset();
23 
27  void identify(std::ostream& os = std::cout) const;
28 
30  int isValid() const;
31 
33  int get_EvtSequence() const {return evtseq;}
35  void set_EvtSequence(const int ival) {evtseq = ival;}
36 
37  float get_ImpactParameter() const {return bimp;}
38  void set_ImpactParameter(const float b) {bimp = b;}
39 
40  float get_EventPlaneAngle() const {return rplane;}
41  void set_EventPlaneAngle(const float r) {rplane = r;}
42 
43  protected:
44  int evtseq;
45  float bimp;
46  float rplane;
47 
48  private: // prevent doc++ from showing ClassDef
49  ClassDef(PHG4EventHeaderv1,1)
50 
51 };
52 
53 #endif
54 
55 
56 
int get_EvtSequence() const
get Event Number
void set_EventPlaneAngle(const float r)
int isValid() const
isValid returns non zero if object contains valid data
float get_ImpactParameter() const
float get_EventPlaneAngle() const
void identify(std::ostream &os=std::cout) const
void set_ImpactParameter(const float b)
void set_EvtSequence(const int ival)
set Event Number
virtual void Reset()
Clear Event.
virtual ~PHG4EventHeaderv1()
dtor