Skip to content

Commit a4dea85

Browse files
authored
Update generator_pythia8_syntheFlowOO.C
1 parent 86e7ea2 commit a4dea85

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

MC/config/PWGLF/pythia8/generator_pythia8_syntheFlowOO.C

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@
1414
#include <map>
1515
#include <unordered_set>
1616

17-
class GeneratorPythia8SyntheFlow : public o2::eventgen::GeneratorPythia8
17+
class GeneratorPythia8SyntheFlowOO : public o2::eventgen::GeneratorPythia8
1818
{
1919
public:
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));

0 commit comments

Comments
 (0)