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::emcal
20{
21
26{
27 private:
28 Double_t mAmplitudeFraction{0};
29
30 public:
31 MCLabel() = default;
32 MCLabel(Int_t trackID, Int_t eventID, Int_t srcID, Bool_t fake, Double_t afraction) : o2::MCCompLabel(trackID, eventID, srcID, fake), mAmplitudeFraction(afraction) {}
33 MCLabel(Bool_t noise, Double_t afraction) : o2::MCCompLabel(noise), mAmplitudeFraction(afraction) {}
34 void setAmplitudeFraction(Double_t afraction) { mAmplitudeFraction = afraction; }
35 [[nodiscard]] Double_t getAmplitudeFraction() const { return mAmplitudeFraction; }
36
38};
39} // namespace o2::emcal
40
41#endif
Monte-Carlo label for EMCAL clusters / digits.
Definition MCLabel.h:26
Double_t getAmplitudeFraction() const
Definition MCLabel.h:35
ClassDefNV(MCLabel, 2)
MCLabel(Bool_t noise, Double_t afraction)
Definition MCLabel.h:33
MCLabel(Int_t trackID, Int_t eventID, Int_t srcID, Bool_t fake, Double_t afraction)
Definition MCLabel.h:32
void setAmplitudeFraction(Double_t afraction)
Definition MCLabel.h:34
a couple of static helper functions to create timestamp values for CCDB queries or override obsolete ...