Project
Loading...
Searching...
No Matches
O2MCApplicationBase.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/*
13 * O2MCApplicationBase.h
14 *
15 * Created on: Feb 13, 2019
16 * Author: swenzel
17 */
18
19#ifndef STEER_INCLUDE_STEER_O2MCAPPLICATIONBASE_H_
20#define STEER_INCLUDE_STEER_O2MCAPPLICATIONBASE_H_
21
22#include <FairMCApplication.h>
23#include "Rtypes.h" // for Int_t, Bool_t, Double_t, etc
24#include <TVirtualMC.h>
25#include "SimConfig/SimParams.h"
26
27namespace o2
28{
29namespace steer
30{
31
32// O2 specific changes/overrides to FairMCApplication
33// Here in particular for custom adjustments to stepping logic
34// and tracking limits
36{
37 public:
38 O2MCApplicationBase() : FairMCApplication(), mCutParams(o2::conf::SimCutParams::Instance()) { initTrackRefHook(); }
39 O2MCApplicationBase(const char* name, const char* title, TObjArray* ModList, const char* MatName) : FairMCApplication(name, title, ModList, MatName), mCutParams(o2::conf::SimCutParams::Instance())
40 {
42 }
43
44 ~O2MCApplicationBase() override = default;
45
46 void Stepping() override;
47 void PreTrack() override;
48 void BeginEvent() override;
49 void FinishEvent() override;
50 void ConstructGeometry() override;
51 void InitGeometry() override;
52 bool MisalignGeometry() override;
53 void AddParticles() override;
54
55 // specific implementation of our hard geometry limits
56 double TrackingRmax() const override { return mCutParams.maxRTracking; }
57 double TrackingZmax() const override { return mCutParams.maxAbsZTracking; }
58
59 typedef std::function<void(TVirtualMC const*)> TrackRefFcn;
60
61 protected:
62 o2::conf::SimCutParams const& mCutParams; // reference to parameter system
63 unsigned long long mStepCounter{0};
64 std::map<int, std::string> mModIdToName{}; // mapping of module id to name
65 std::map<int, std::string> mSensitiveVolumes{}; // collection of all sensitive volumes with
66 // keeping track of volumeIds and volume names
67
70 void finishEventCommon();
71 TrackRefFcn mTrackRefFcn; // a function hook that gets (optionally) called during Stepping
72 void initTrackRefHook();
73
75};
76
77} // end namespace steer
78} // end namespace o2
79
80#endif /* STEER_INCLUDE_STEER_O2MCAPPLICATIONBASE_H_ */
double TrackingRmax() const override
~O2MCApplicationBase() override=default
void finishEventCommon()
some common parts of finishEvent
o2::conf::SimCutParams const & mCutParams
std::map< int, std::string > mSensitiveVolumes
double TrackingZmax() const override
O2MCApplicationBase(const char *name, const char *title, TObjArray *ModList, const char *MatName)
std::map< int, std::string > mModIdToName
ClassDefOverride(O2MCApplicationBase, 1)
std::function< void(TVirtualMC const *)> TrackRefFcn
GLuint const GLchar * name
Definition glcorearb.h:781
typedef void(APIENTRYP PFNGLCULLFACEPROC)(GLenum mode)
a couple of static helper functions to create timestamp values for CCDB queries or override obsolete ...