Go to the documentation of this file.00001
00002
00003
00004
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021 #ifndef CondFormatsL1TObjects_L1MuTriggerPtScale_h
00022 #define CondFormatsL1TObjects_L1MuTriggerPtScale_h
00023
00024 #include <cmath>
00025 #include <iostream>
00026 #include <vector>
00027
00028 #include "FWCore/MessageLogger/interface/MessageLogger.h"
00029 #include "CondFormats/L1TObjects/interface/L1MuScale.h"
00030
00031 class L1MuTriggerPtScale {
00032 public:
00033
00035 L1MuTriggerPtScale() {}
00036
00037 L1MuTriggerPtScale( int nbitPackingPt,
00038 bool signedPackingPt,
00039 int nbinsPt,
00040 const std::vector<double>& scalePt
00041 ) {
00042
00043
00044
00045
00046
00047
00048
00049
00050
00051
00052
00053
00054
00055
00056 m_PtScale = L1MuBinnedScale ( nbitPackingPt,
00057 signedPackingPt,
00058 nbinsPt,
00059 scalePt ) ;
00060
00061 };
00062
00063
00065 virtual ~L1MuTriggerPtScale() {
00066 };
00067
00069 const L1MuScale* getPtScale() const { return &m_PtScale;};
00070
00071
00072 private:
00073 L1MuBinnedScale m_PtScale;
00074 };
00075
00076
00077 #endif