Project
Loading...
Searching...
No Matches
MCLabel.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// Declaration of a transient MC label class for EMCal
13
14#ifndef ALICEO2_EMCAL_MCLABEL_H_
15#define ALICEO2_EMCAL_MCLABEL_H_
16
18
19namespace o2
20{
21namespace emcal
22{
23
28{
29 private:
30 Double_t mAmplitudeFraction;
31
32 public:
33 MCLabel() = default;
34 MCLabel(Int_t trackID, Int_t eventID, Int_t srcID, Bool_t fake, Double_t afraction) : o2::MCCompLabel(trackID, eventID, srcID, fake), mAmplitudeFraction(afraction) {}
35 MCLabel(Bool_t noise, Double_t afraction) : o2::MCCompLabel(noise), mAmplitudeFraction(afraction) {}
36 void setAmplitudeFraction(Double_t afraction) { mAmplitudeFraction = afraction; }
37 Double_t getAmplitudeFraction() const { return mAmplitudeFraction; }
38
40};
41} // namespace emcal
42} //namespace o2
43
44#endif
Monte-Carlo label for EMCAL clusters / digits.
Definition MCLabel.h:28
Double_t getAmplitudeFraction() const
Definition MCLabel.h:37
ClassDefNV(MCLabel, 1)
MCLabel(Bool_t noise, Double_t afraction)
Definition MCLabel.h:35
MCLabel(Int_t trackID, Int_t eventID, Int_t srcID, Bool_t fake, Double_t afraction)
Definition MCLabel.h:34
void setAmplitudeFraction(Double_t afraction)
Definition MCLabel.h:36
a couple of static helper functions to create timestamp values for CCDB queries or override obsolete ...