1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
#ifndef DataRecord_L1RPCHsbConfigRcd_h
#define DataRecord_L1RPCHsbConfigRcd_h
// -*- C++ -*-
//
// Package: DataRecord
// Class : L1RPCHsbConfigRcd
//
/**\class L1RPCHsbConfigRcd L1RPCHsbConfigRcd.h CondFormats/DataRecord/interface/L1RPCHsbConfigRcd.h
Description: <one line class summary>
Usage:
<usage>
*/
#include "FWCore/Utilities/interface/mplVector.h"
#include "FWCore/Framework/interface/DependentRecordImplementation.h"
#include "CondFormats/DataRecord/interface/L1TriggerKeyListRcd.h"
#include "CondFormats/DataRecord/interface/L1TriggerKeyRcd.h"
class L1RPCHsbConfigRcd
: public edm::eventsetup::DependentRecordImplementation<L1RPCHsbConfigRcd,
edm::mpl::Vector<L1TriggerKeyListRcd, L1TriggerKeyRcd> > {};
#endif
|