File indexing completed on 2025-08-06 08:17:54
0001
0002
0003
0004
0005
0006
0007 #ifndef MVTX_MVTXHITPRUNER_H
0008 #define MVTX_MVTXHITPRUNER_H
0009
0010 #include <fun4all/SubsysReco.h>
0011 #include <trackbase/TrkrDefs.h>
0012
0013 #include <string> // for string
0014 #include <utility>
0015 class PHCompositeNode;
0016 class TrkrHit;
0017 class TrkrHitSetContainer;
0018
0019
0020
0021
0022 class MvtxHitPruner : public SubsysReco
0023 {
0024 public:
0025
0026
0027 MvtxHitPruner(const std::string &name = "MvtxHitPruner");
0028
0029
0030 ~MvtxHitPruner() override = default;
0031
0032
0033 int Init(PHCompositeNode * ) override { return 0; }
0034
0035
0036 int InitRun(PHCompositeNode * ) override;
0037
0038
0039 int process_event(PHCompositeNode * ) override;
0040
0041
0042 int End(PHCompositeNode * ) override { return 0; }
0043
0044 private:
0045
0046 TrkrHitSetContainer *m_hits = nullptr;
0047 };
0048
0049 #endif