CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions | Private Attributes
L1MuTriggerPtScale Class Reference

#include <L1MuTriggerPtScale.h>

Public Member Functions

const L1MuScalegetPtScale () const
 get the Pt scale More...
 
 L1MuTriggerPtScale ()
 constructor More...
 
 L1MuTriggerPtScale (int nbitPackingPt, bool signedPackingPt, int nbinsPt, const std::vector< double > &scalePt)
 
virtual ~L1MuTriggerPtScale ()
 destructor More...
 

Private Attributes

L1MuBinnedScale m_PtScale
 

Detailed Description

Description: Class that creates all scales used to pass data from the regional muon triggers to the Global Muon Trigger and from the latter to the Global Trigger

Definition at line 31 of file L1MuTriggerPtScale.h.

Constructor & Destructor Documentation

L1MuTriggerPtScale::L1MuTriggerPtScale ( )
inline

constructor

Definition at line 35 of file L1MuTriggerPtScale.h.

35 {}
L1MuTriggerPtScale::L1MuTriggerPtScale ( int  nbitPackingPt,
bool  signedPackingPt,
int  nbinsPt,
const std::vector< double > &  scalePt 
)
inline

Definition at line 37 of file L1MuTriggerPtScale.h.

References m_PtScale.

41  {
42 
43  //
44  // Pt Scale. Common to all Regioanl Muon Triggers and GMT
45  //
46 
47  // pt scale in GeV
48  // low edges of pt bins
49 /* const float ptscale[33] = { */
50 /* -1., 0.0, 1.5, 2.0, 2.5, 3.0, 3.5, 4.0, */
51 /* 4.5, 5.0, 6.0, 7.0, 8.0, 10.0, 12.0, 14.0, */
52 /* 16.0, 18.0, 20.0, 25.0, 30.0, 35.0, 40.0, 45.0, */
53 /* 50.0, 60.0, 70.0, 80.0, 90.0, 100.0, 120.0, 140.0, 1.E6 }; */
54 
55  // m_PtScale = L1MuBinnedScale ( 5, false, 32, ptscale) ;
56  m_PtScale = L1MuBinnedScale ( nbitPackingPt,
57  signedPackingPt,
58  nbinsPt,
59  scalePt ) ;
60 
61  };
L1MuBinnedScale m_PtScale
virtual L1MuTriggerPtScale::~L1MuTriggerPtScale ( )
inlinevirtual

destructor

Definition at line 65 of file L1MuTriggerPtScale.h.

65  {
66  };

Member Function Documentation

const L1MuScale* L1MuTriggerPtScale::getPtScale ( ) const
inline

Member Data Documentation

L1MuBinnedScale L1MuTriggerPtScale::m_PtScale
private

Definition at line 69 of file L1MuTriggerPtScale.h.

Referenced by L1MuTriggerPtScale().