Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:15:19

0001 /****************************************************************************
0002 *
0003 * This is a part of TOTEM offline software.
0004 * Authors: 
0005 *   Jan Kaspar (jan.kaspar@gmail.com) 
0006 *
0007 ****************************************************************************/
0008 
0009 #ifndef RECORDS_VeryForwardRealGeometryRecord_H
0010 #define RECORDS_VeryForwardRealGeometryRecord_H
0011 
0012 #include "FWCore/Framework/interface/DependentRecordImplementation.h"
0013 #include "Geometry/Records/interface/IdealGeometryRecord.h"
0014 #include "Geometry/Records/interface/VeryForwardIdealGeometryRecord.h"
0015 
0016 #include "FWCore/Utilities/interface/mplVector.h"
0017 
0018 #include "CondFormats/AlignmentRecord/interface/RPRealAlignmentRecord.h"
0019 
0020 /**
0021  * \ingroup TotemRPGeometry
0022  * \brief Event setup record containing the real (actual) geometry information.
0023  **/
0024 class VeryForwardRealGeometryRecord
0025     : public edm::eventsetup::DependentRecordImplementation<
0026           VeryForwardRealGeometryRecord,
0027           edm::mpl::Vector<VeryForwardIdealGeometryRecord, IdealGeometryRecord, RPRealAlignmentRecord /*, ... */> > {};
0028 
0029 #endif