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
|
/****************************************************************************
*
* This is a part of TOTEM offline software.
* Authors:
* Laurent Forthomme
*
****************************************************************************/
#ifndef Geometry_Records_TotemGeometryRcd_h
#define Geometry_Records_TotemGeometryRcd_h
#include "FWCore/Framework/interface/DependentRecordImplementation.h"
#include "FWCore/Utilities/interface/mplVector.h"
#include "Geometry/Records/interface/IdealGeometryRecord.h"
#include "Geometry/Records/interface/PTotemRcd.h"
/**
* \ingroup TotemGeometry
* \brief Event setup record containing the real (actual) geometry information.
**/
class TotemGeometryRcd
: public edm::eventsetup::DependentRecordImplementation<TotemGeometryRcd,
edm::mpl::Vector<IdealGeometryRecord, PTotemRcd> > {};
#endif
|