Class Reference for E1039 Core & Analysis Software
HepMCCompress.h
Go to the documentation of this file.
1 #ifndef HEPMCCOMPRESS_H__
2 #define HEPMCCOMPRESS_H__
3 
4 #include <fun4all/SubsysReco.h>
5 
6 #include <set>
7 #include <string>
8 
9 class PHCompositeNode;
10 
11 class HepMCCompress : public SubsysReco
12 {
13  public:
14  HepMCCompress(const std::string &name = "HEPMCREADER");
15  virtual ~HepMCCompress() {}
16 
17  int Init(PHCompositeNode *topNode);
18  int process_event(PHCompositeNode *topNode);
19  protected:
20  short int FloatToInt(const float rval) const;
21  std::set<int> exclude_pid;
22  std::set<int> select_pid;
23 };
24 
25 #endif
26 
int Init(PHCompositeNode *topNode)
std::set< int > select_pid
Definition: HepMCCompress.h:22
HepMCCompress(const std::string &name="HEPMCREADER")
std::set< int > exclude_pid
Definition: HepMCCompress.h:21
virtual ~HepMCCompress()
Definition: HepMCCompress.h:15
int process_event(PHCompositeNode *topNode)
short int FloatToInt(const float rval) const