File indexing completed on 2025-08-05 08:16:07
0001
0002
0003 #ifndef FFARAWMODULES_SEPDCHECK_H
0004 #define FFARAWMODULES_SEPDCHECK_H
0005
0006 #include "DumpPacket.h"
0007
0008 #include <fun4all/SubsysReco.h>
0009
0010 #include <set>
0011 #include <string>
0012
0013 class Fun4AllInputManager;
0014 class PHCompositeNode;
0015
0016 class SEpdCheck : public SubsysReco, public DumpPacket
0017 {
0018 public:
0019 SEpdCheck(const std::string &name = "SEpdCheck");
0020
0021 ~SEpdCheck() override {}
0022
0023 int Init(PHCompositeNode *topNode) override;
0024
0025 int process_event(PHCompositeNode *topNode) override;
0026
0027 private:
0028
0029
0030 };
0031
0032 #endif