ATLAS Offline Software
LArShapeP.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_LARSHAPEP
6 #define LARRAWCONDITIONS_LARSHAPEP
7 
8 #include <vector>
9 
15 class LArShapeP
16 {
17 
18 public:
19  LArShapeP() {}
20  bool isEmpty() const { return m_vShape.size() == 0 ; } ;
21  std::vector<double> m_vShape;
22  std::vector<double> m_vShapeDer;
23 };
24 
25 
26 #endif
27 
LArShapeP::m_vShape
std::vector< double > m_vShape
Definition: LArShapeP.h:20
LArShapeP::LArShapeP
LArShapeP()
Definition: LArShapeP.h:19
LArShapeP::isEmpty
bool isEmpty() const
Definition: LArShapeP.h:20
LArShapeP::m_vShapeDer
std::vector< double > m_vShapeDer
Definition: LArShapeP.h:22
LArShapeP
c-struct reproducing the structure of the persistent data
Definition: LArShapeP.h:16