Project
Loading...
Searching...
No Matches
ClusterizerParameters.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
14#ifndef ALICEO2_EMCAL_CLUSTERIZERPARAMETERS_H
15#define ALICEO2_EMCAL_CLUSTERIZERPARAMETERS_H
16
17#include "Rtypes.h"
18
19namespace o2
20{
21
22namespace emcal
23{
24
30{
31 public:
32 ClusterizerParameters(double timeCut, double timeMin, double timeMax, bool doEnergyGradientCut, double gradientCut, double thresholdSeedE, double thresholdCellE);
34
35 double getTimeCut() { return mTimeCut; }
36 double getTimeMin() { return mTimeMin; }
37 double getTimeMax() { return mTimeMax; }
38 double getGradientCut() { return mGradientCut; }
39 double getDoEnergyGradientCut() { return mDoEnergyGradientCut; }
40 double getThresholdSeedEnergy() { return mThresholdSeedEnergy; }
41 double getThresholdCellEnergy() { return mThresholdCellEnergy; }
42
43 private:
44 double mTimeCut = 0;
45 double mTimeMin = 0;
46 double mTimeMax = 0;
47 double mGradientCut = 0;
48 bool mDoEnergyGradientCut = false;
49 double mThresholdSeedEnergy = 0;
50 double mThresholdCellEnergy = 0;
51 ClassDefNV(ClusterizerParameters, 1);
52};
53
54} // namespace emcal
55} // namespace o2
56#endif /* ALICEO2_EMCAL_CLUSTERIZERPARAMETERS_H */
Contains all parameters to set up the clusterizer.
a couple of static helper functions to create timestamp values for CCDB queries or override obsolete ...