forked from AliceO2Group/AliceO2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patho2sim_kine_publisher.cxx
More file actions
68 lines (60 loc) · 2.79 KB
/
o2sim_kine_publisher.cxx
File metadata and controls
68 lines (60 loc) · 2.79 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
// Copyright 2019-2020 CERN and copyright holders of ALICE O2.
// See https://alice-o2.web.cern.ch/copyright for details of the copyright holders.
// All rights not expressly granted are reserved.
//
// This software is distributed under the terms of the GNU General Public
// License v3 (GPL Version 3), copied verbatim in the file "COPYING".
//
// In applying this license CERN does not waive the privileges and immunities
// granted to it by virtue of its status as an Intergovernmental Organization
// or submit itself to any jurisdiction.
#include "../Framework/Core/src/ArrowSupport.h"
#include "Framework/AnalysisTask.h"
#include "Monitoring/Monitoring.h"
#include "Framework/CommonDataProcessors.h"
#include "Steer/MCKinematicsReader.h"
#include "Framework/runDataProcessing.h"
using namespace o2::framework;
using namespace o2::steer;
struct O2simKinePublisher {
Configurable<std::string> kineFileName{"kineFileName", "o2sim", "name of the _Kine.root file (without '_Kine.root')"};
Configurable<int> aggregate{"aggregate-timeframe", 300, "Number of events to put in a timeframe"};
int nEvents = 0;
int eventCounter = 0;
int tfCounter = 0;
std::shared_ptr<MCKinematicsReader> mcKinReader = std::make_shared<MCKinematicsReader>();
void init(o2::framework::InitContext& /*ic*/)
{
if (mcKinReader->initFromKinematics((std::string)kineFileName)) {
nEvents = mcKinReader->getNEvents(0);
} else {
LOGP(fatal, "Cannot open kine file {}", (std::string)kineFileName);
}
}
void run(o2::framework::ProcessingContext& pc)
{
for (auto i = 0; i < std::min((int)aggregate, nEvents - eventCounter); ++i) {
auto mcevent = mcKinReader->getMCEventHeader(0, eventCounter);
auto mctracks = mcKinReader->getTracks(0, eventCounter);
pc.outputs().snapshot(Output{"MC", "MCHEADER", 0}, mcevent);
pc.outputs().snapshot(Output{"MC", "MCTRACKS", 0}, mctracks);
++eventCounter;
}
// report number of TFs injected for the rate limiter to work
++tfCounter;
pc.services().get<o2::monitoring::Monitoring>().send(o2::monitoring::Metric{(uint64_t)tfCounter, "df-sent"}.addTag(o2::monitoring::tags::Key::Subsystem, o2::monitoring::tags::Value::DPL));
if (eventCounter >= nEvents) {
pc.services().get<ControlService>().endOfStream();
pc.services().get<ControlService>().readyToQuit(QuitRequest::Me);
}
}
};
WorkflowSpec defineDataProcessing(ConfigContext const& cfgc)
{
auto spec = adaptAnalysisTask<O2simKinePublisher>(cfgc);
spec.outputs.emplace_back("MC", "MCHEADER", 0, Lifetime::Timeframe);
spec.outputs.emplace_back("MC", "MCTRACKS", 0, Lifetime::Timeframe);
spec.requiredServices.push_back(o2::framework::ArrowSupport::arrowBackendSpec());
spec.algorithm = CommonDataProcessors::wrapWithTimesliceConsumption(spec.algorithm);
return {spec};
}