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_VeryForwardMisalignedGeometryRecord_H
0010 #define RECORDS_VeryForwardMisalignedGeometryRecord_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/RPMisalignedAlignmentRecord.h"
0019 
0020 /**
0021  * \ingroup TotemRPGeometry
0022  * \brief Event setup record containing the misaligned geometry information. It is used for 
0023  * alignment studies only.
0024  **/
0025 class VeryForwardMisalignedGeometryRecord
0026     : public edm::eventsetup::DependentRecordImplementation<
0027           VeryForwardMisalignedGeometryRecord,
0028           edm::mpl::Vector<VeryForwardIdealGeometryRecord, IdealGeometryRecord, RPMisalignedAlignmentRecord /*, ... */> > {
0029 };
0030 
0031 #endif