00001 #ifndef CSCObjects_CSCRecoDigiParameters_h 00002 #define CSCObjects_CSCRecoDigiParameters_h 00003 00013 //#include <DataFormats/MuonDetId/interface/CSCDetId.h> 00014 #include <string> 00015 #include <vector> 00016 00017 //#include <boost/cstdint.hpp> 00018 00019 class CSCRecoDigiParameters { 00020 00021 public: 00022 CSCRecoDigiParameters() { } 00023 ~CSCRecoDigiParameters() { } 00024 00025 std::vector<int> pUserParOffset; // where the fupars for a ch. type start in the fupars blob. 00026 std::vector<int> pUserParSize; // size of the fupars. if known, then both this and the above can go. 00027 // std::vector<CSCDetId> pCSCDetIds; // 00028 std::vector<int> pChamberType; 00029 std::vector<float> pfupars; // user parameters 00030 }; 00031 00032 #endif 00033