File indexing completed on 2025-08-05 08:16:07
0001
0002
0003 #ifndef FFARAWMODULES_MBDCHECK_H
0004 #define FFARAWMODULES_MBDCHECK_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 MbdCheck : public SubsysReco, public DumpPacket
0017 {
0018 public:
0019 MbdCheck(const std::string &name = "MbdCheck");
0020
0021 ~MbdCheck() override {}
0022
0023 int Init(PHCompositeNode *topNode) override;
0024
0025 int process_event(PHCompositeNode *topNode) override;
0026
0027
0028
0029
0030
0031 private:
0032
0033
0034 };
0035
0036 #endif