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
|
#ifndef RECORDS_CastorGEOMETRYRECORD_H
#define RECORDS_CastorGEOMETRYRECORD_H
// -*- C++ -*-
//
// Package: Records
// Class : CastorGeometryRecord
//
//
// Author: Brian Heltsley
// Created: Tue April 1, 2008
//
#include "FWCore/Framework/interface/EventSetupRecordImplementation.h"
#include "FWCore/Framework/interface/DependentRecordImplementation.h"
#include "Geometry/Records/interface/IdealGeometryRecord.h"
#include "CondFormats/AlignmentRecord/interface/CastorAlignmentRcd.h"
#include "CondFormats/AlignmentRecord/interface/CastorAlignmentErrorRcd.h"
#include "CondFormats/AlignmentRecord/interface/CastorAlignmentErrorExtendedRcd.h"
#include "CondFormats/AlignmentRecord/interface/GlobalPositionRcd.h"
#include "Geometry/Records/interface/PCastorRcd.h"
#include "FWCore/Utilities/interface/mplVector.h"
class CastorGeometryRecord
: public edm::eventsetup::DependentRecordImplementation<CastorGeometryRecord,
edm::mpl::Vector<IdealGeometryRecord,
CastorAlignmentRcd,
CastorAlignmentErrorRcd,
CastorAlignmentErrorExtendedRcd,
GlobalPositionRcd,
PCastorRcd> > {};
#endif /* RECORDS_CastorGEOMETRYRECORD_H */
|