Analysis Software
Documentation for sPHENIX simulation software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
MvtxUnpackPRDF.h
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file MvtxUnpackPRDF.h
1 #ifndef __MvtxUnpackPRDFF__
2 #define __MvtxUnpackPRDFF__
3 
4 //* Unpacks raw HCAL PRDF files *//
5 //Abhisek Sen
6 
7 #include <fun4all/SubsysReco.h>
8 #include <phool/PHObject.h>
9 
10 #define NCHIP 4
11 #define NROW 512
12 #define NREGION 32
13 #define NCOL_PER_REGION 32
14 
15 class Event;
16 class Packet;
19 
20 class MvtxUnpackPRDF : public SubsysReco
21 {
22 public:
24 
25  int
26  Init(PHCompositeNode *topNode);
27 
28  int
29  InitRun(PHCompositeNode *topNode);
30 
31  int
33 
34  int
35  End(PHCompositeNode *topNode);
36 
37  void
38  Verbosity(int v) {_verbosity = v;}
39 
40  void
42 
43  void MakeHits();
44 
45 private:
46 
48 
52 
53  int _nevents;
55  bool _first;
56 
59 
60 };
61 
62 #endif //**MvtxUnpackPRDFF**//