CMS 3D CMS Logo

L1MuCSCTFAlignment.h

Go to the documentation of this file.
00001 #ifndef L1TObjects_L1MuCSCTFAlignment_h
00002 #define L1TObjects_L1MuCSCTFAlignment_h
00003 
00004 #include <vector>
00005 
00006 class L1MuCSCTFAlignment {
00007 private:
00008         std::vector<double> coefficients;
00009 
00010 public:
00011         L1MuCSCTFAlignment& operator=(const L1MuCSCTFAlignment& conf){
00012                 coefficients = conf.coefficients;
00013                 return *this;
00014         }
00015 
00016         std::vector<double> operator()() { return coefficients; }
00017 
00018         L1MuCSCTFAlignment(void){}
00019         L1MuCSCTFAlignment(std::vector<double> cff){ coefficients=cff; }
00020         L1MuCSCTFAlignment(const L1MuCSCTFAlignment& conf){
00021                 coefficients = conf.coefficients;
00022         }
00023         ~L1MuCSCTFAlignment(void){}
00024 };
00025 
00026 #endif

Generated on Tue Jun 9 17:26:37 2009 for CMSSW by  doxygen 1.5.4