1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
///
/// \class L1TCaloParamsRcd
///
/// Description: Record for CaloParams
///
/// Implementation:
///
///
/// \author: Jim Brooke, University of Bristol
///
#ifndef CondFormatsDataRecord_L1TCaloParamsO2ORcd_h
#define CondFormatsDataRecord_L1TCaloParamsO2ORcd_h
#include "FWCore/Framework/interface/DependentRecordImplementation.h"
#include "CondFormats/DataRecord/interface/L1TriggerKeyListExtRcd.h"
#include "CondFormats/DataRecord/interface/L1TriggerKeyExtRcd.h"
#include "CondFormats/DataRecord/interface/L1TCaloParamsRcd.h"
class L1TCaloParamsO2ORcd : public edm::eventsetup::DependentRecordImplementation<
L1TCaloParamsO2ORcd,
edm::mpl::Vector<L1TriggerKeyListExtRcd, L1TriggerKeyExtRcd, L1TCaloParamsRcd> > {};
#endif
|