Project
Loading...
Searching...
No Matches
Pedestals.cxx
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
13#include <fairlogger/Logger.h>
14#include <TH1.h>
15
16using namespace o2::phos;
17
18Pedestals::Pedestals(int /*dummy*/)
19{
20 //produce reasonable objest for test purposes
21 mHGPedestals.fill(40);
22 mLGPedestals.fill(35);
23}
24
26{
27 //We assume that histogram if filled vs absId of channels
28 if (!h) {
29 LOG(error) << "no input histogam";
30 return false;
31 }
32
33 if (h->GetNbinsX() != NCHANNELS + OFFSET) {
34 LOG(error) << "Wrong dimentions of input histogram:" << h->GetNbinsX() << " instead of " << NCHANNELS + OFFSET;
35 return false;
36 }
37
38 for (short i = 0; i < NCHANNELS; i++) {
39 if (h->GetBinContent(i + OFFSET) > 255) {
40 LOG(error) << "pedestal value too large:" << h->GetBinContent(i + OFFSET) << "can not be stored in char";
41 continue;
42 }
43 mHGPedestals[i] = static_cast<unsigned char>(h->GetBinContent(i + OFFSET));
44 }
45 return true;
46}
48{
49 //We assume that histogram if filled vs absId of channels
50 if (!h) {
51 LOG(error) << "no input histogam";
52 return false;
53 }
54
55 if (h->GetNbinsX() != NCHANNELS + OFFSET) {
56 LOG(error) << "Wrong dimentions of input histogram:" << h->GetNbinsX() << " instead of " << NCHANNELS + OFFSET;
57 return false;
58 }
59
60 for (short i = 0; i < NCHANNELS; i++) {
61 if (h->GetBinContent(i + OFFSET) > 255) {
62 LOG(error) << "pedestal value too large:" << h->GetBinContent(i + OFFSET) << "can not be stored in char";
63 continue;
64 }
65 mLGPedestals[i] = static_cast<unsigned char>(h->GetBinContent(i + OFFSET));
66 }
67 return true;
68}
int32_t i
Class for time synchronization of RawReader instances.
bool setLGPedestals(TH1 *h)
Set pedestals from 1D histogram with cell absId in x axis.
Definition Pedestals.cxx:47
bool setHGPedestals(TH1 *h)
Set pedestals from 1D histogram with cell absId in x axis.
Definition Pedestals.cxx:25
LOG(info)<< "Compressed in "<< sw.CpuTime()<< " s"