Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:04:39

0001 // -*- C++ -*-
0002 //
0003 // Package:     L1Trigger
0004 // Class  :     L1HFRings
0005 //
0006 // Implementation:
0007 //     <Notes on implementation>
0008 //
0009 // Original Author:
0010 //         Created:  Fri Mar 20 12:16:54 CET 2009
0011 //
0012 
0013 // system include files
0014 
0015 // user include files
0016 #include "DataFormats/L1Trigger/interface/L1HFRings.h"
0017 
0018 using namespace l1extra;
0019 
0020 //
0021 // constants, enums and typedefs
0022 //
0023 
0024 //
0025 // static data member definitions
0026 //
0027 
0028 //
0029 // constructors and destructor
0030 //
0031 L1HFRings::L1HFRings() {}
0032 
0033 L1HFRings::L1HFRings(const double* hfEtSums,  // array of etSums
0034                      const int* hfBitCounts,  // array of bitCounts
0035                      const edm::Ref<L1GctHFRingEtSumsCollection>& aHFEtSumsRef,
0036                      const edm::Ref<L1GctHFBitCountsCollection>& aHFBitCountsRef,
0037                      int bx)
0038     : m_etSumsRef(aHFEtSumsRef), m_bitCountsRef(aHFBitCountsRef), m_bx(bx) {
0039   for (int i = 0; i < kNumRings; ++i) {
0040     m_ringEtSums[i] = hfEtSums[i];
0041     m_ringBitCounts[i] = hfBitCounts[i];
0042   }
0043 }
0044 
0045 // L1HFRings::L1HFRings(const L1HFRings& rhs)
0046 // {
0047 //    // do actual copying here;
0048 // }
0049 
0050 L1HFRings::~L1HFRings() {}
0051 
0052 //
0053 // assignment operators
0054 //
0055 // const L1HFRings& L1HFRings::operator=(const L1HFRings& rhs)
0056 // {
0057 //   //An exception safe implementation is
0058 //   L1HFRings temp(rhs);
0059 //   swap(rhs);
0060 //
0061 //   return *this;
0062 // }
0063 
0064 //
0065 // member functions
0066 //
0067 
0068 //
0069 // const member functions
0070 //
0071 
0072 //
0073 // static member functions
0074 //