Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017 #include "DataFormats/L1Trigger/interface/L1HFRings.h"
00018
00019 using namespace l1extra ;
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032 L1HFRings::L1HFRings()
00033 {
00034 }
00035
00036 L1HFRings::L1HFRings(
00037 const double* hfEtSums,
00038 const int* hfBitCounts,
00039 const edm::Ref< L1GctHFRingEtSumsCollection >& aHFEtSumsRef,
00040 const edm::Ref< L1GctHFBitCountsCollection >& aHFBitCountsRef,
00041 int bx )
00042 : m_etSumsRef( aHFEtSumsRef ),
00043 m_bitCountsRef( aHFBitCountsRef ),
00044 m_bx( bx )
00045 {
00046 for( int i = 0 ; i < kNumRings ; ++i )
00047 {
00048 m_ringEtSums[ i ] = hfEtSums[ i ] ;
00049 m_ringBitCounts[ i ] = hfBitCounts[ i ] ;
00050 }
00051 }
00052
00053
00054
00055
00056
00057
00058 L1HFRings::~L1HFRings()
00059 {
00060 }
00061
00062
00063
00064
00065
00066
00067
00068
00069
00070
00071
00072
00073
00074
00075
00076
00077
00078
00079
00080
00081
00082
00083
00084