CMS 3D CMS Logo

/afs/cern.ch/work/a/aaltunda/public/www/CMSSW_6_2_7/src/CondFormats/Alignment/interface/Alignments.h

Go to the documentation of this file.
00001 #ifndef Alignments_H
00002 #define Alignments_H
00003 
00004 #include "CondFormats/Alignment/interface/AlignTransform.h"
00005 
00006 #include<vector>
00007 
00008 class Alignments {
00009 public:
00010   Alignments(){}
00011   virtual ~Alignments(){}
00013   inline bool empty() const { return m_align.empty();}
00015   inline void clear() {m_align.clear();}
00016 
00017   std::vector<AlignTransform> m_align;
00018 };
00019 #endif // Alignments_H