ATLAS Offline Software
LArRinjP.h
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration
3 */
4 
5 #ifndef LARRAWCONDITIONS_LARRINJP
6 #define LARRAWCONDITIONS_LARRINJP
7 
8 #include <vector>
9 
19 // persistent c-struct
20 class LArRinjP{
21 public:
22 
23  LArRinjP() : m_Rinj(-9999999) {}
24  LArRinjP(float f) : m_Rinj(f) {}
25  bool isEmpty() const { return m_Rinj < -9999 ; } ;
26  float m_Rinj;
27 };
28 
29 #endif
30 
python.CaloRecoConfig.f
f
Definition: CaloRecoConfig.py:127
LArRinjP::LArRinjP
LArRinjP(float f)
Definition: LArRinjP.h:24
LArRinjP
c-struct reproducing the structure of the persistent data
Definition: LArRinjP.h:20
LArRinjP::m_Rinj
float m_Rinj
Definition: LArRinjP.h:25
LArRinjP::isEmpty
bool isEmpty() const
Definition: LArRinjP.h:25
LArRinjP::LArRinjP
LArRinjP()
Definition: LArRinjP.h:23