CMS 3D CMS Logo

Alignments.h
Go to the documentation of this file.
1 #ifndef Alignments_H
2 #define Alignments_H
3 
5 
7 
8 #include <vector>
9 
10 class Alignments {
11 public:
13  virtual ~Alignments() {}
15  inline bool empty() const { return m_align.empty(); }
17  inline void clear() { m_align.clear(); }
18 
19  std::vector<AlignTransform> m_align;
20 
22 };
23 #endif // Alignments_H
void clear()
Clear vector without having to look into internals:
Definition: Alignments.h:17
virtual ~Alignments()
Definition: Alignments.h:13
std::vector< AlignTransform > m_align
Definition: Alignments.h:19
bool empty() const
Test of empty vector without having to look into internals:
Definition: Alignments.h:15
#define COND_SERIALIZABLE
Definition: Serializable.h:39