Project
Loading...
Searching...
No Matches
O2MCApplication.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_MC_APPLICATION_H
13#define O2_MC_APPLICATION_H
14
15#include "FairMCApplication.h"
17#include "Rtypes.h" // for Int_t, Bool_t, Double_t, etc
18#include <iostream>
19#include <TParticle.h>
20#include <vector>
21#include <DetectorsBase/Stack.h>
23#include <FairRootManager.h>
24#include <FairDetector.h>
25
26#include <fairmq/FwdDecls.h>
27
28namespace o2
29{
30namespace steer
31{
32
33// O2 specific changes/overrides to FairMCApplication
34// (like for device based processing in which we
35// forward the data instead of using FairRootManager::Fill())
37{
38 public:
40 ~O2MCApplication() override = default;
41
42 // triggers data sending/io
43 void SendData();
44
45 void initLate();
46
48 void FinishEvent() override
49 {
50 // update the stack
51 fStack->FillTrackArray();
52 fStack->UpdateTrackIndex(fActiveDetectors);
53
55
56 // This special finish event version does not fill the output tree of FairRootManager
57 // but forwards the data to the HitMerger
58 SendData();
59
60 // call end of event on active detectors
61 for (auto det : listActiveDetectors) {
62 det->FinishEvent();
63 det->EndOfEvent();
64 }
65 fStack->Reset();
66 }
67
69 void FinishRun();
70
71 void attachSubEventInfo(fair::mq::Parts&, o2::data::SubEventInfo const& info) const;
72
74 void GeneratePrimaries() override
75 {
76 // ordinarily we would call the event generator ...
77 LOG(debug) << "O2MCApplication: Init primaries from external buffer " << mPrimaries.size();
78 GetStack()->Reset();
79 // but here we init the stack from
80 // a vector of particles that someone sets externally
81 static_cast<o2::data::Stack*>(GetStack())->initFromPrimaries(mPrimaries);
82 }
83
84 void setPrimaries(std::vector<TParticle> const& p)
85 {
86 mPrimaries = p;
87 }
88
89 void setSimDataChannel(fair::mq::Channel* channel) { mSimDataChannel = channel; }
91
92 std::vector<TParticle> mPrimaries;
93
94 fair::mq::Channel* mSimDataChannel;
96 std::vector<o2::base::Detector*> mActiveO2Detectors;
97
98 ClassDefOverride(O2MCApplication, 1); //Interface to MonteCarlo application
99};
100
101} // end namespace steer
102} // end namespace o2
103
104#endif
Definition of the Stack class.
int32_t i
std::ostringstream debug
void finishEventCommon()
some common parts of finishEvent
o2::data::SubEventInfo * mSubEventInfo
generic channel on which to send sim data
fair::mq::Channel * mSimDataChannel
std::vector< o2::base::Detector * > mActiveO2Detectors
what are we currently processing?
void setSimDataChannel(fair::mq::Channel *channel)
void GeneratePrimaries() override
void attachSubEventInfo(fair::mq::Parts &, o2::data::SubEventInfo const &info) const
~O2MCApplication() override=default
void setPrimaries(std::vector< TParticle > const &p)
std::vector< TParticle > mPrimaries
ClassDefOverride(O2MCApplication, 1)
active (data taking) o2 detectors
void setSubEventInfo(o2::data::SubEventInfo *i)
a couple of static helper functions to create timestamp values for CCDB queries or override obsolete ...
LOG(info)<< "Compressed in "<< sw.CpuTime()<< " s"