ATLAS Offline Software
Loading...
Searching...
No Matches
Trigger/TrigTools/TrigVrtSecInclusive/TrigVrtSecInclusive/Constants.h
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2022 CERN for the benefit of the ATLAS collaboration
3*/
4#ifndef TRIGTOOLS_TRIG_VSI_CONST
5#define TRIGTOOLS_TRIG_VSI_CONST
6
13
14#include "TMath.h"
15
16namespace TrigVSI {
17
19 namespace AlgConsts {
20 constexpr float IDr = 299.;
21 constexpr float IDrInner = 20.;
22 constexpr float IDz = 1800.;
23 constexpr float mapBinWid = 10.;
24
25 constexpr float maxEta = 3.5;
26 constexpr int nEta = 70;
27 constexpr int nPhi = 60;
28
29 constexpr int binNumR = static_cast<int>( ( (IDr - IDrInner) - 1)/mapBinWid + 1 );
30 constexpr int binNumZ = static_cast<int>( (IDz - 1)/mapBinWid + 1 );
31
32 }//end of namespace TrigVSI::AlgConsts
33
34} //end of namespace TrigVSI
35
36#endif
constexpr float mapBinWid
Default bin width for vertex map.
constexpr int nEta
Default bin number of eta for vertex map.
constexpr int binNumZ
Default bin number of Z for vertex map.
constexpr int binNumR
Default bin number of R for vertex map.
constexpr int nPhi
Default bin number of phi for vertex map.