1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifndef CondFormatsDataRecord_L1GctChannelMaskRcd_h
#define CondFormatsDataRecord_L1GctChannelMaskRcd_h
#include "FWCore/Utilities/interface/mplVector.h"
//#include "FWCore/Framework/interface/EventSetupRecordImplementation.h"
#include "FWCore/Framework/interface/DependentRecordImplementation.h"
#include "CondFormats/DataRecord/interface/L1TriggerKeyListRcd.h"
#include "CondFormats/DataRecord/interface/L1TriggerKeyRcd.h"
//class L1GctChannelMaskRcd : public edm::eventsetup::EventSetupRecordImplementation<L1GctChannelMaskRcd> {};
class L1GctChannelMaskRcd
: public edm::eventsetup::DependentRecordImplementation<L1GctChannelMaskRcd,
edm::mpl::Vector<L1TriggerKeyListRcd, L1TriggerKeyRcd> > {};
#endif
|