CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
Alignments.h
Go to the documentation of this file.
1 #ifndef Alignments_H
2 #define Alignments_H
3 
5 
6 #include<vector>
7 
8 class Alignments {
9 public:
11  virtual ~Alignments(){}
13  inline bool empty() const { return m_align.empty();}
15  inline void clear() {m_align.clear();}
16 
17  std::vector<AlignTransform> m_align;
18 };
19 #endif // Alignments_H
bool empty() const
Test of empty vector without having to look into internals:
Definition: Alignments.h:13
void clear()
Clear vector without having to look into internals:
Definition: Alignments.h:15
virtual ~Alignments()
Definition: Alignments.h:11
std::vector< AlignTransform > m_align
Definition: Alignments.h:17