1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
#ifndef OpticalAlignments_H
#define OpticalAlignments_H
#include "CondFormats/Serialization/interface/Serializable.h"
#include "CondFormats/OptAlignObjects/interface/OpticalAlignInfo.h"
#include <vector>
#include <iostream>
/**
easy output...
**/
class OpticalAlignments;
std::ostream &operator<<(std::ostream &, const OpticalAlignments &);
/**
Description: Class for OpticalAlignments for use by COCOA.
**/
class OpticalAlignments {
public:
OpticalAlignments() {}
virtual ~OpticalAlignments() {}
std::vector<OpticalAlignInfo> opticalAlignments() const { return opticalAlignments_; }
public:
std::vector<OpticalAlignInfo> opticalAlignments_;
COND_SERIALIZABLE;
};
/* typedef std::vector<int> OptAlignIDs; */
/* typedef std::vector<int>::const_iterator OptAlignIDIterator; */
#endif // OpticalAlignments_H
|