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 HcalZDCLowGainFractionsRcd_H
#define HcalZDCLowGainFractionsRcd_H
// -*- C++ -*-
//
// Package: CondFormats/DataRecord
// Class : HcalZDCLowGainFractionsRcd
//
/**\class HcalZDCLowGainFractionsRcd HcalZDCLowGainFractionsRcd.h CondFormats/DataRecord/interface/HcalZDCLowGainFractionsRcd.h
Description: [one line class summary]
Usage:
<usage>
*/
//
// Author: Audrius Mecionis
// Created: Wed, 24 Sep 2014 11:27:57 GMT
//
#include "FWCore/Framework/interface/DependentRecordImplementation.h"
#include "Geometry/Records/interface/HcalRecNumberingRecord.h"
#include "Geometry/Records/interface/IdealGeometryRecord.h"
class HcalZDCLowGainFractionsRcd : public edm::eventsetup::DependentRecordImplementation<
HcalZDCLowGainFractionsRcd,
edm::mpl::Vector<HcalRecNumberingRecord, IdealGeometryRecord> > {};
#endif
|