Project
Loading...
Searching...
No Matches
GeneratorHybrid.h
Go to the documentation of this file.
1// Copyright 2019-2020 CERN and copyright holders of ALICE O2.
2// See https://alice-o2.web.cern.ch/copyright for details of the copyright holders.
3// All rights not expressly granted are reserved.
4//
5// This software is distributed under the terms of the GNU General Public
6// License v3 (GPL Version 3), copied verbatim in the file "COPYING".
7//
8// In applying this license CERN does not waive the privileges and immunities
9// granted to it by virtue of its status as an Intergovernmental Organization
10// or submit itself to any jurisdiction.
11
13
14#ifndef ALICEO2_EVENTGEN_GENERATORHYBRID_H_
15#define ALICEO2_EVENTGEN_GENERATORHYBRID_H_
16
31#include <TRandom3.h>
33#include "FairGenerator.h"
34#include <DetectorsBase/Stack.h>
35#include <SimConfig/SimConfig.h>
36#include <rapidjson/document.h>
37#include <rapidjson/error/en.h>
38#include <rapidjson/istreamwrapper.h>
39#include <rapidjson/writer.h>
40#include "TBufferJSON.h"
41
42#include <tbb/concurrent_queue.h>
43#include <tbb/task_arena.h>
44#include <iostream>
45#include <thread>
46#include <atomic>
47
48namespace o2
49{
50namespace eventgen
51{
52
54{
55
56 public:
57 GeneratorHybrid(const std::string& inputgens);
59
60 Bool_t Init() override;
61 Bool_t generateEvent() override;
62 Bool_t importParticles() override;
63 void updateHeader(o2::dataformats::MCEventHeader* eventHeader) override;
64
65 Bool_t parseJSON(const std::string& path);
66 Bool_t confSetter(const auto& gen);
67 template <typename T>
68 std::string jsonValueToString(const T& value);
69
70 private:
71 o2::eventgen::Generator* currentgen = nullptr;
72 std::vector<std::shared_ptr<o2::eventgen::Generator>> gens;
73 const std::vector<std::string> generatorNames = {"extkinO2", "evtpool", "boxgen", "external", "hepmc", "pythia8", "pythia8pp", "pythia8hi", "pythia8hf", "pythia8powheg"};
74 std::vector<std::string> mInputGens;
75 std::vector<std::string> mGens;
76 std::vector<std::string> mConfigs;
77 std::vector<std::string> mConfsPythia8;
78
79 std::vector<bool> mGenIsInitialized;
80
81 // Parameters configurations
82 std::vector<std::unique_ptr<o2::eventgen::BoxGenConfig>> mBoxGenConfigs;
83 std::vector<std::unique_ptr<o2::eventgen::Pythia8GenConfig>> mPythia8GenConfigs;
84 std::vector<std::unique_ptr<o2::eventgen::O2KineGenConfig>> mO2KineGenConfigs;
85 std::vector<o2::eventgen::EventPoolGenConfig> mEventPoolConfigs;
86 std::vector<std::unique_ptr<o2::eventgen::ExternalGenConfig>> mExternalGenConfigs;
87 std::vector<std::unique_ptr<o2::eventgen::FileOrCmdGenConfig>> mFileOrCmdGenConfigs;
88 std::vector<std::unique_ptr<o2::eventgen::HepMCGenConfig>> mHepMCGenConfigs;
89
90 bool mRandomize = false;
91 std::vector<int> mFractions;
92 std::vector<float> mRngFractions;
93 int mseqCounter = 0;
94 int mCurrentFraction = 0;
95 int mIndex = 0;
96 int mEventCounter = 0;
97 int mTasksStarted = 0;
98
99 // Cocktail mode
100 bool mCocktailMode = false;
101 std::vector<std::vector<int>> mGroups;
102
103 // Trigger configuration
104 std::vector<ETriggerMode_t> mTriggerModes; // trigger mode for each generator
105 std::vector<std::vector<std::string>> mTriggerMacros; // trigger macros for each generator (multiple triggers for each generator possible)
106 std::vector<std::vector<std::string>> mTriggerFuncs; // trigger functions for each generator (multiple triggers for each generator possible)
107
108 // Create a task arena with a specified number of threads
109 std::thread mTBBTaskPoolRunner;
110 tbb::concurrent_bounded_queue<int> mInputTaskQueue;
111 std::vector<tbb::concurrent_bounded_queue<int>> mResultQueue;
112 tbb::task_arena mTaskArena;
113 std::atomic<bool> mStopFlag;
114 bool mIsInitialized = false;
115
116 o2::dataformats::MCEventHeader mMCEventHeader; // to capture event headers
117
118 enum class GenMode {
119 kSeq,
120 kParallel
121 };
122
123 // hybrid gen operation mode - should be either 'sequential' or 'parallel'
124 // parallel means that we have clones of the same generator collaborating on event generation
125 // sequential means that events will be produced in the order given by fractions; async processing is still happening
126 GenMode mGenerationMode = GenMode::kSeq;
127};
128
129} // namespace eventgen
130} // namespace o2
131
132#endif
Definition of the Stack class.
default_random_engine gen(dev())
Bool_t parseJSON(const std::string &path)
std::string jsonValueToString(const T &value)
void updateHeader(o2::dataformats::MCEventHeader *eventHeader) override
Bool_t confSetter(const auto &gen)
GLsizei const GLfloat * value
Definition glcorearb.h:819
GLsizei const GLchar *const * path
Definition glcorearb.h:3591
a couple of static helper functions to create timestamp values for CCDB queries or override obsolete ...