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