src
OnlineDB
EcalCondDB
src
EcalCommon.cc
Go to the documentation of this file.
1
#include <cmath>
2
#include <stdexcept>
3
4
#include "
OnlineDB/EcalCondDB/interface/EcalCommon.h
"
5
6
using namespace
std
;
7
8
int
EcalCommon::crystalToTriggerTower
(
int
xtal) noexcept(
false
) {
9
if
(xtal < 1 || xtal > 1700) {
10
throw
(std::runtime_error(
"ERROR: crystalToTriggerTower: crystal number out of bounds"
));
11
}
12
13
int
i
= (
int
)floor((xtal - 1) / 20.0);
14
int
j
= (xtal - 1) - 20 *
i
;
15
int
tti = (
int
)floor(
i
/ 5.0);
16
int
ttj = (
int
)floor(
j
/ 5.0);
17
int
tt
= ttj + 4 * tti + 1;
18
19
return
tt
;
20
}
mps_fire.i
i
Definition:
mps_fire.py:429
dqmiolumiharvest.j
j
Definition:
dqmiolumiharvest.py:66
std
Definition:
JetResolutionObject.h:76
groupFilesInBlocks.tt
int tt
Definition:
groupFilesInBlocks.py:144
tt
Definition:
TTTypes.h:54
createfilelist.int
int
Definition:
createfilelist.py:10
EcalCommon::crystalToTriggerTower
static int crystalToTriggerTower(int xtal) noexcept(false)
Definition:
EcalCommon.cc:8
EcalCommon.h
Generated for CMSSW Reference Manual by
1.8.14