Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:01:55

0001 #ifndef Alignments_H
0002 #define Alignments_H
0003 
0004 #include "CondFormats/Serialization/interface/Serializable.h"
0005 
0006 #include "CondFormats/Alignment/interface/AlignTransform.h"
0007 
0008 #include <vector>
0009 
0010 class Alignments {
0011 public:
0012   Alignments() {}
0013   virtual ~Alignments() {}
0014   /// Test of empty vector without having to look into internals:
0015   inline bool empty() const { return m_align.empty(); }
0016   /// Clear vector without having to look into internals:
0017   inline void clear() { m_align.clear(); }
0018 
0019   std::vector<AlignTransform> m_align;
0020 
0021   COND_SERIALIZABLE;
0022 };
0023 #endif  // Alignments_H