File indexing completed on 2025-08-03 08:16:22
0001
0002
0003 #ifndef HIJINGFLIPAFTERBURNER_H
0004 #define HIJINGFLIPAFTERBURNER_H
0005
0006 #include <fun4all/SubsysReco.h>
0007
0008 #include <string>
0009
0010 class PHCompositeNode;
0011 namespace HepMC
0012 {
0013 class GenEvent;
0014 }
0015
0016 class HIJINGFlipAfterburner : public SubsysReco
0017 {
0018 public:
0019 HIJINGFlipAfterburner(const std::string &name = "HIJINGFlipAfterburner");
0020
0021 ~HIJINGFlipAfterburner() override = default;
0022
0023 int process_event(PHCompositeNode *topNode) override;
0024
0025 private:
0026 void flipZDirection(HepMC::GenEvent *event);
0027 bool doFlip{true};
0028 };
0029
0030 #endif