File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 1414#include <map>
1515#include <unordered_set>
1616
17- class GeneratorPythia8SyntheFlow : public o2 ::eventgen ::GeneratorPythia8
17+ class GeneratorPythia8SyntheFlowOO : public o2 ::eventgen ::GeneratorPythia8
1818{
1919public :
2020 /// Constructor
21- GeneratorPythia8SyntheFlow () {
21+ GeneratorPythia8SyntheFlowOO () {
2222 lutGen = new o2 ::eventgen ::FlowMapper ();
2323
2424 // -------- CONFIGURE SYNTHETIC FLOW ------------
@@ -46,7 +46,7 @@ public:
4646 }
4747
4848 /// Destructor
49- ~GeneratorPythia8SyntheFlow () = default ;
49+ ~GeneratorPythia8SyntheFlowOO () = default ;
5050
5151 //__________________________________________________________________
5252 Bool_t generateEvent () override {
@@ -97,9 +97,9 @@ private:
9797 o2 ::eventgen ::FlowMapper * lutGen ; // for mapping phi angles
9898};
9999
100- FairGenerator * generator_syntheFlow ()
100+ FairGenerator * generator_syntheFlowOO ()
101101 {
102- auto generator = new GeneratorPythia8SyntheFlow ();
102+ auto generator = new GeneratorPythia8SyntheFlowOO ();
103103 gRandom -> SetSeed (0 );
104104 generator -> readString ("Random:setSeed = on" );
105105 generator -> readString ("Random:seed =" + std ::to_string (gRandom -> Integer (900000000 - 2 ) + 1 ));
You can’t perform that action at this time.
0 commit comments