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
|
#ifndef CSCObjects_CSCRecoDigiParameters_h
#define CSCObjects_CSCRecoDigiParameters_h
/** \class CSCRecoDigiParameters
*
* Build the CSCGeometry from the DDD description.
*
* \author Tim Cox
*
* Michael Case (MEC) One per Chamber Type.
*/
#include "CondFormats/Serialization/interface/Serializable.h"
#include <string>
#include <vector>
class CSCRecoDigiParameters {
public:
CSCRecoDigiParameters() {}
~CSCRecoDigiParameters() {}
std::vector<int> pUserParOffset; // where the fupars for a ch. type start in the fupars blob.
std::vector<int> pUserParSize; // size of the fupars. if known, then both this and the above can go.
std::vector<int> pChamberType;
std::vector<float> pfupars; // user parameters
COND_SERIALIZABLE;
};
#endif
|