Analysis Software
Documentation for sPHENIX simulation software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
MvtxHitPruner.h
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file MvtxHitPruner.h
1 
7 #ifndef MVTX_MVTXHITPRUNER_H
8 #define MVTX_MVTXHITPRUNER_H
9 
10 #include <fun4all/SubsysReco.h>
11 #include <trackbase/TrkrDefs.h>
12 
13 #include <string> // for string
14 #include <utility>
15 class PHCompositeNode;
16 class TrkrHit;
18 
22 class MvtxHitPruner : public SubsysReco
23 {
24  public:
25  typedef std::pair<unsigned int, unsigned int> pixel;
26 
27  MvtxHitPruner(const std::string &name = "MvtxHitPruner");
28  ~MvtxHitPruner() override {}
29 
31  int Init(PHCompositeNode */*topNode*/) override { return 0; }
32 
34  int InitRun(PHCompositeNode * /*topNode*/) override;
35 
37  int process_event(PHCompositeNode * /*topNode*/) override;
38 
40  int End(PHCompositeNode */*topNode*/) override { return 0; }
41 
42  private:
43 
44  // node tree storage pointers
46 
47  // settings
48 
49 };
50 
51 #endif // MVTX_MVTXHITPRUNER_H