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_HcalValidationCorrsRcd_h
#define DataRecord_HcalValidationCorrsRcd_h
// -*- C++ -*-
//
// Package: DataRecord
// Class : HcalValidationCorrsRcd
//
/**\class HcalValidationCorrsRcd HcalValidationCorrsRcd.h CondFormats/DataRecord/interface/HcalValidationCorrsRcd.h
Description: <one line class summary>
Usage:
<usage>
*/
//
// Author: Gena Kukartsev
// Created: Wed Jul 29 14:35:28 CSET 2009
//
#include "FWCore/Framework/interface/DependentRecordImplementation.h"
#include "Geometry/Records/interface/HcalRecNumberingRecord.h"
#include "Geometry/Records/interface/IdealGeometryRecord.h"
class HcalValidationCorrsRcd : public edm::eventsetup::DependentRecordImplementation<
HcalValidationCorrsRcd,
edm::mpl::Vector<HcalRecNumberingRecord, IdealGeometryRecord> > {};
#endif
|