Project
Loading...
Searching...
No Matches
CalibParams.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 "CPVBase/Geometry.h"
14
15#include <fairlogger/Logger.h>
16
17#include <TH2.h>
18
19#include <iostream>
20
21using namespace o2::cpv;
22
23CalibParams::CalibParams(short /*dummy*/)
24{
25 //produce reasonable objest for test purposes
26 mGainCalib.fill(1.);
27}
28
29bool CalibParams::setGain(TH2* h, short module)
30{
31 const short MAXX = 128,
32 MAXZ = 60;
33 if (!h) {
34 LOG(error) << "no input histogam";
35 return false;
36 }
37
38 if (h->GetNbinsX() != MAXX || h->GetNbinsY() != MAXZ) {
39 LOG(error) << "Wrong dimentions of input histogram:" << h->GetNbinsX() << "," << h->GetNbinsY() << " instead of " << MAXX << "," << MAXZ;
40 return false;
41 }
42
43 short relid[3] = {module, 0, 0};
44 unsigned short absId;
45 for (short ix = 1; ix <= MAXX; ix++) {
46 relid[1] = ix - 1;
47 for (short iz = 1; iz <= MAXZ; iz++) {
48 relid[2] = iz - 1;
49
50 if (Geometry::relToAbsNumbering(relid, absId)) {
51 mGainCalib[absId] = h->GetBinContent(ix, iz);
52 }
53 }
54 }
55 return true;
56}
Class for time synchronization of RawReader instances.
void setGain(unsigned short cellID, float c)
Set High Gain energy calibration coefficient.
Definition CalibParams.h:54
static bool relToAbsNumbering(const short *relId, unsigned short &absId)
Definition Geometry.cxx:99
LOG(info)<< "Compressed in "<< sw.CpuTime()<< " s"