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
|
#ifndef DataRecord_HcalZSThresholdsRcd_h
#define DataRecord_HcalZSThresholdsRcd_h
// -*- C++ -*-
//
// Package: DataRecord
// Class : HcalZSThresholdsRcd
//
/**\class HcalZSThresholdsRcd HcalZSThresholdsRcd.h CondFormats/DataRecord/interface/HcalZSThresholdsRcd.h
Description: <one line class summary>
Usage:
<usage>
*/
//
// Author:
// Created: Sat Nov 24 16:42:00 CET 2007
//
#include "FWCore/Framework/interface/DependentRecordImplementation.h"
#include "Geometry/Records/interface/HcalRecNumberingRecord.h"
#include "Geometry/Records/interface/IdealGeometryRecord.h"
class HcalZSThresholdsRcd : public edm::eventsetup::DependentRecordImplementation<
HcalZSThresholdsRcd,
edm::mpl::Vector<HcalRecNumberingRecord, IdealGeometryRecord> > {};
#endif
|