Project
Loading...
Searching...
No Matches
HitProcessingManager.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
12#ifndef O2_HITPROCESSINGMANAGER_H
13#define O2_HITPROCESSINGMANAGER_H
14
19#include <TGeoManager.h>
20#include <string>
21#include <vector>
22#include <map>
23#include <functional>
24
25#include "TChain.h"
26
27namespace o2
28{
29namespace steer
30{
31
32using RunFunct_t = std::function<void(const o2::steer::DigitizationContext&)>;
33
36{
37 public:
40 {
41 static HitProcessingManager mgr;
42 return mgr;
43 }
45
46 // add background file (simprefix) to chain
47 void addInputFile(std::string_view simfilename);
48
49 // add a signal file (simprefix) to chain corresponding to signal index "signalindex"
50 void addInputSignalFile(std::string_view signalfilename, int signalindex = 1);
51
52 void setGeometryFile(std::string const& geomfile) { mGeometryFile = geomfile; }
53
54 o2::steer::InteractionSampler& getInteractionSampler() { return mInteractionSampler; }
55
58
59 void run();
60
62
63 // setup the run with ncollisions to treat
64 // if -1 and only background chain will do number of entries in chain
65 void setupRun(int ncollisions = -1);
66
67 const o2::steer::DigitizationContext& getDigitizationContext() const { return mDigitizationContext; }
68 o2::steer::DigitizationContext& getDigitizationContext() { return mDigitizationContext; }
69
70 // serializes the runcontext to file
71 void writeDigitizationContext(const char* filename) const;
72 // setup run from serialized context; returns true if ok
73 bool setupRunFromExistingContext(const char* filename);
74
75 void setRandomEventSequence(bool b) { mSampleCollisionsRandomly = b; }
76
77 private:
78 HitProcessingManager() : mSimChains() {}
79 bool setupChain();
80
81 bool checkConsistency() const;
82
83 std::vector<RunFunct_t> mRegisteredRunFunctions;
84 o2::steer::DigitizationContext mDigitizationContext;
85
86 // this should go into the DigitizationContext --> the manager only fills it
87 std::vector<std::string> mBackgroundFileNames;
88 std::map<int, std::vector<std::string>> mSignalFileNames;
89 std::string mGeometryFile; // geometry file if any
90
91 o2::steer::InteractionSampler mInteractionSampler;
92
93 int mNumberOfCollisions; // how many collisions we want to generate and process
94 bool mSampleCollisionsRandomly = false; // if we sample the sequence of event ids randomly (with possible repetition)
95
96 std::vector<TChain*> mSimChains;
97 // ClassDefOverride(HitProcessingManager, 0);
98};
99
100inline void HitProcessingManager::registerRunFunction(RunFunct_t&& f) { mRegisteredRunFunctions.emplace_back(f); }
101
102inline void HitProcessingManager::addInputFile(std::string_view simfilename)
103{
104 mBackgroundFileNames.emplace_back(simfilename);
105}
106
107inline void HitProcessingManager::addInputSignalFile(std::string_view simfilename, int signal)
108{
109 if (mSignalFileNames.find(signal) == mSignalFileNames.end()) {
110 // insert empty vector for id signal
111 mSignalFileNames.insert(std::pair<int, std::vector<std::string>>(signal, std::vector<std::string>()));
112 }
113 mSignalFileNames[signal].emplace_back(simfilename);
114}
115} // namespace steer
116} // namespace o2
117
118#endif
Definition of the Names Generator class.
O2 specific run class; steering hit processing.
bool setupRunFromExistingContext(const char *filename)
void writeDigitizationContext(const char *filename) const
void addInputFile(std::string_view simfilename)
void addInputSignalFile(std::string_view signalfilename, int signalindex=1)
const o2::steer::DigitizationContext & getDigitizationContext() const
static HitProcessingManager & instance()
get access to singleton instance
o2::steer::DigitizationContext & getDigitizationContext()
void setGeometryFile(std::string const &geomfile)
o2::steer::InteractionSampler & getInteractionSampler()
GLdouble f
Definition glcorearb.h:310
GLboolean GLboolean GLboolean b
Definition glcorearb.h:1233
typedef void(APIENTRYP PFNGLCULLFACEPROC)(GLenum mode)
std::function< void(const o2::steer::DigitizationContext &)> RunFunct_t
a couple of static helper functions to create timestamp values for CCDB queries or override obsolete ...
std::string filename()