Analysis Software
Documentation for sPHENIX simulation software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
HIJINGFlipAfterburner.h
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file HIJINGFlipAfterburner.h
1 // Tell emacs that this is a C++ source
2 // -*- C++ -*-.
3 #ifndef HIJINGFLIPAFTERBURNER_H
4 #define HIJINGFLIPAFTERBURNER_H
5 
6 #include <fun4all/SubsysReco.h>
7 
8 #include <string>
9 
10 class PHCompositeNode;
11 namespace HepMC
12 {
13  class GenEvent;
14 }
15 
17 {
18  public:
19  HIJINGFlipAfterburner(const std::string &name = "HIJINGFlipAfterburner");
20 
21  ~HIJINGFlipAfterburner() override = default;
22 
23  int process_event(PHCompositeNode *topNode) override;
24 
25  private:
26  void flipZDirection(HepMC::GenEvent *event);
27  bool doFlip{true};
28 };
29 
30 #endif // HIJINGFLIPAFTERBURNER_H