Project
Loading...
Searching...
No Matches
CaloRawFitter.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
22
23#ifndef PHOSRAWFITTER_H_
24#define PHOSRAWFITTER_H_
25#include "Rtypes.h"
26
27namespace o2
28{
29
30namespace phos
31{
32
34{
35
36 public:
46
47 public:
50
52 virtual ~CaloRawFitter() = default;
53
60 virtual FitStatus evaluate(gsl::span<short unsigned int> signal);
61
63 void setLowGain(bool isLow = false) { mLowGain = isLow; }
64
66 void setPedSubtract(bool toSubtruct = false) { mPedSubtract = toSubtruct; }
67
69 float getAmp() const { return mAmp; }
70
72 float getChi2() const { return mChi2; }
73
75 float getTime() const { return mTime; }
76
78 bool isOverflow() const { return mOverflow; }
79
82 void forseFitting(bool toRunFit = true) { makeFit = toRunFit; }
83
86 void setPedestal() { mPedestalRun = true; }
87
88 protected:
89 FitStatus evalKLevel(gsl::span<short unsigned int> signal);
90
91 protected:
92 bool makeFit = false;
93 bool mLowGain = false;
94 bool mPedSubtract = false;
95 bool mPedestalRun = false;
96 bool mOverflow;
98 short mMaxSample = 0;
99 float mAmp;
100 float mTime = 0;
101 float mChi2 = 1e10;
105
107}; // End of CaloRawFitter
108
109} // namespace phos
110
111} // namespace o2
112#endif
FitStatus evalKLevel(gsl::span< short unsigned int > signal)
void setPedestal()
Set analysis of pedestal run Analyze pedestal run, i.e. calculate mean and RMS of pedestals instead o...
float mAmp
amplitude of last processed sample
bool isOverflow() const
is last fitted sample has overflow
void setLowGain(bool isLow=false)
Set HighGain/LowGain channel to performe or not fit of saturated samples.
void setPedSubtract(bool toSubtruct=false)
estimate and subtract pedestals from pre-samples
bool mOverflow
is last sample saturated
short mMaxSample
maximal sample
bool mPedSubtract
should one evaluate and subtract pedestals
float mTime
time of last processed sample
bool makeFit
run (slow) fit with Gamma2 or use fast evaluation with k-level
void forseFitting(bool toRunFit=true)
Forse perform fitting Make fit for any sample, not only saturated LowGain samples as by default.
virtual FitStatus evaluate(gsl::span< short unsigned int > signal)
Evaluation Amplitude and TOF return status -1: not evaluated/empty bunch; 0: OK; 1: overflow; 4: sing...
ClassDef(CaloRawFitter, 1)
float mChi2
chi2 calculated in last fit
bool mPedestalRun
analyze as pedestal run
FitStatus mStatus
status of last evaluated sample: -1: not yet evaluated; 0: OK; 1: overflow; 2: too large RMS; 3: sing...
float getChi2() const
Chi2/NDF of last performed fit.
float getTime() const
time in last fitted sample
virtual ~CaloRawFitter()=default
Destructor.
bool mLowGain
is current bunch from LowGain channel
float getAmp() const
amplitude in last fitted sample
a couple of static helper functions to create timestamp values for CCDB queries or override obsolete ...