Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:02:12

0001 #ifndef CSCObjects_CSCRecoDigiParameters_h
0002 #define CSCObjects_CSCRecoDigiParameters_h
0003 
0004 /** \class CSCRecoDigiParameters
0005  *
0006  *  Build the CSCGeometry from the DDD description.
0007  *
0008  *  \author Tim Cox
0009  *
0010  *  Michael Case (MEC) One per Chamber Type.
0011  */
0012 
0013 #include "CondFormats/Serialization/interface/Serializable.h"
0014 
0015 #include <string>
0016 #include <vector>
0017 
0018 class CSCRecoDigiParameters {
0019 public:
0020   CSCRecoDigiParameters() {}
0021   ~CSCRecoDigiParameters() {}
0022 
0023   std::vector<int> pUserParOffset;  // where the fupars for a ch. type start in the fupars blob.
0024   std::vector<int> pUserParSize;    // size of the fupars.  if known, then both this and the above can go.
0025   std::vector<int> pChamberType;
0026   std::vector<float> pfupars;  // user parameters
0027 
0028   COND_SERIALIZABLE;
0029 };
0030 
0031 #endif