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
|
/****************************************************************************
*
* This is a part of TOTEM offline software.
* Authors:
* Jan Kaspar (jan.kaspar@gmail.com)
*
****************************************************************************/
#ifndef RECORDS_VeryForwardRealGeometryRecord_H
#define RECORDS_VeryForwardRealGeometryRecord_H
#include "FWCore/Framework/interface/DependentRecordImplementation.h"
#include "Geometry/Records/interface/IdealGeometryRecord.h"
#include "Geometry/Records/interface/VeryForwardIdealGeometryRecord.h"
#include "FWCore/Utilities/interface/mplVector.h"
#include "CondFormats/AlignmentRecord/interface/RPRealAlignmentRecord.h"
/**
* \ingroup TotemRPGeometry
* \brief Event setup record containing the real (actual) geometry information.
**/
class VeryForwardRealGeometryRecord
: public edm::eventsetup::DependentRecordImplementation<
VeryForwardRealGeometryRecord,
edm::mpl::Vector<VeryForwardIdealGeometryRecord, IdealGeometryRecord, RPRealAlignmentRecord /*, ... */> > {};
#endif
|