Project
Loading...
Searching...
No Matches
testBadChannelScaleFactors.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
12#define BOOST_TEST_MODULE Test_EMCAL_Calib
13#define BOOST_TEST_MAIN
14#define BOOST_TEST_DYN_LINK
15#include <boost/test/unit_test.hpp>
18#include "EMCALBase/Geometry.h"
19
20#include <algorithm>
21
22namespace o2
23{
24
25namespace emcal
26{
27
28BOOST_AUTO_TEST_CASE(BadChannelScaleFactor_test)
29{
30
32
33 struct BadChannelScaleFactorTest {
34 BadChannelScaleFactorTest(int id, float e, float scale) : cellID(id), energy(e), scaleFactor(scale) {}
35 int cellID;
36 float energy;
37 float scaleFactor;
38 };
39
40 std::vector<float> vecEnergyIntervals = {0., 1., 5., 10., 10000};
41 std::vector<BadChannelScaleFactorTest> vecScaleFactors;
43
44 for (int iCell = 0; iCell < geo->GetNCells(); iCell++) {
45 float energy = 100 * ((double)rand() / (RAND_MAX));
46 float scaleFactor = 1.0 + 0.1 * ((double)rand() / (RAND_MAX));
47 vecScaleFactors.push_back(BadChannelScaleFactorTest(iCell, energy, scaleFactor));
48
49 // find index of energy interval
50 auto it = std::find_if(vecEnergyIntervals.begin(), vecEnergyIntervals.end(), [&](float energyInterval) {
51 return energy < energyInterval;
52 });
53 // cout << "iCell: " << iCell << " energy: " << energy << " scaleFactor: " << scaleFactor << " energyInterval: " << *it << endl;
54
55 scaleFactors.insertVal(iCell, vecEnergyIntervals[*it], vecEnergyIntervals[*it + 1], scaleFactor);
56 }
57
58 for (auto& scaleFactor : vecScaleFactors) {
59 float scaleFactorFromMap = scaleFactors.getScaleVal(scaleFactor.cellID, scaleFactor.energy);
60 BOOST_CHECK_CLOSE(scaleFactor.scaleFactor, scaleFactorFromMap, 0.0001);
61 }
62}
63} // namespace emcal
64
65} // namespace o2
void insertVal(unsigned int cellID, float E_min, float E_max, float scale)
float getScaleVal(unsigned int cellID, float E) const
static Geometry * GetInstanceFromRunNumber(Int_t runNumber, const std::string_view="", const std::string_view mcname="TGeant3", const std::string_view mctitle="")
Instanciate geometry depending on the run number. Mostly used in analysis and MC anchors.
Definition Geometry.cxx:219
BOOST_AUTO_TEST_CASE(asynch_schedule_test)
a couple of static helper functions to create timestamp values for CCDB queries or override obsolete ...