Class Reference for E1039 Core & Analysis Software
PHGenEventv1.h
Go to the documentation of this file.
1 #ifndef PHGENEVENTV1_H
2 #define PHGENEVENTV1_H
3 
4 #include "PHGenEvent.h"
5 
6 #include <phool/phool.h>
7 #include <phool/PHObject.h>
8 
9 #include <TString.h>
10 
11 #include <HepMC/GenEvent.h>
12 
13 
14 class PHGenEventv1 : public PHGenEvent {
15 
16  public:
17 
18  PHGenEventv1();
19  PHGenEventv1(const unsigned int id, HepMC::GenEvent &event);
20  PHGenEventv1(const PHGenEventv1& phevent);
21  PHGenEventv1(const PHGenEventv1* phevent);
22  virtual ~PHGenEventv1();
23 
24  const HepMC::GenEvent* get_event() const;
25  HepMC::GenEvent* get_event();
26  TString get_event_record() const {return _event_record;}
27  void set_event(HepMC::GenEvent &event);
28  void set_event(HepMC::GenEvent* event);
29 
30  unsigned int get_id() const {return _id;}
31  void set_id(const unsigned int id) {_id = id;}
32 
33  // the number of entries in the array of particles
34  size_t particles_size() const;
35  size_t vertices_size() const;
36 
37  // PHObject interface
38  void identify(std::ostream& out = std::cout) const {
39  out << "PHGenEventv1" << std::endl;
40  }
41  void print(std::ostream& out = std::cout) const;
42  void Reset();
43 
44 private:
45 
46  bool stale() const {return _stale;}
47  void refresh() const;
48 
49  // a unique id to aid in tracing merged events (multiple container entries)
50  unsigned int _id;
51 
52  // the ASCII event record of the HepMC event (ROOT responsible for compression)
53  // this reduces the central event storage requirement by 41% (Bzip2 achieves 32%)
54  // a 2nd version of this class could possibly do better by storing the
55  // vertices and particles in classes of their own and rebuilding the HepMC
56  // from there. This might make better use of space and ROOT compression.
57  TString _event_record;
58 
59 #ifndef __CINT____ // hide from dictionary generation
60  mutable bool _stale;
61  mutable HepMC::GenEvent* _event;
62 #endif // __CINT__
63 
64  ClassDef(PHGenEventv1,1)
65 };
66 
67 #endif
TString get_event_record() const
Definition: PHGenEventv1.h:26
void set_event(HepMC::GenEvent &event)
Definition: PHGenEventv1.cc:54
void print(std::ostream &out=std::cout) const
void Reset()
Clear Event.
Definition: PHGenEventv1.cc:94
const HepMC::GenEvent * get_event() const
Definition: PHGenEventv1.cc:44
size_t particles_size() const
Definition: PHGenEventv1.cc:84
size_t vertices_size() const
Definition: PHGenEventv1.cc:89
void identify(std::ostream &out=std::cout) const
Definition: PHGenEventv1.h:38
unsigned int get_id() const
Definition: PHGenEventv1.h:30
virtual ~PHGenEventv1()
Definition: PHGenEventv1.cc:40
void set_id(const unsigned int id)
Definition: PHGenEventv1.h:31