ATLAS Offline Software
LArRampP1.h
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
3 */
4 
5 #ifndef LARRAWCONDITIONS_LARRAMP1P
6 #define LARRAWCONDITIONS_LARRAMP1P
7 
8 #include <vector>
9 
16 /* Modified for POOL persistency
17  Hong Ma
18  July 15, 2005
19 */
20 
21 
22 
23 class LArRampP1
24 {
25 public:
26 
27  LArRampP1() {}
28  LArRampP1(const std::vector<float>& vRamp) : m_vRamp(vRamp) {}
29  bool isEmpty() const { return (m_vRamp.size() == 0); }
30  std::vector<float> m_vRamp;
31 
32 };
33 
34 #endif
35 
LArRampP1::isEmpty
bool isEmpty() const
Definition: LArRampP1.h:29
LArRampP1
Persistent data for LArRamp Copied from LAr.
Definition: LArRampP1.h:24
LArRampP1::m_vRamp
std::vector< float > m_vRamp
Definition: LArRampP1.h:30
LArRampP1::LArRampP1
LArRampP1(const std::vector< float > &vRamp)
Definition: LArRampP1.h:28
LArRampP1::LArRampP1
LArRampP1()
Definition: LArRampP1.h:27