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
28
29
30
31
32
33
34
|
#ifndef L1Scales_L1HfRingEtScaleRcd_h
#define L1Scales_L1HfRingEtScaleRcd_h
// -*- C++ -*-
//
// Package: DataRecord
// Class : L1HfRingEtScaleRcd
//
/**\class L1HfRingEtScaleRcd L1HfRingEtScaleRcd.h CondFormats/DataRecord/interface/L1HfRingEtScaleRcd.h
Description: <one line class summary>
Usage:
<usage>
*/
//
// Author: Jim Brooke
// Created: Wed Oct 4 16:49:43 CEST 2006
// $Id:
//
#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 L1HfRingEtScaleRcd : public edm::eventsetup::EventSetupRecordImplementation<L1HfRingEtScaleRcd> {};
class L1HfRingEtScaleRcd
: public edm::eventsetup::DependentRecordImplementation<L1HfRingEtScaleRcd,
edm::mpl::Vector<L1TriggerKeyListRcd, L1TriggerKeyRcd> > {};
#endif
|