Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:22:10

0001 /*! \class   TTClusterAlgorithmRecord
0002  *  \brief   Class to store the TTClusterAlgorithm used
0003  *           in TTClusterBuilder
0004  *
0005  *  \author Andrew W. Rose
0006  *  \date   2013, Jul 12
0007  *
0008  */
0009 
0010 #ifndef L1_TRACK_TRIGGER_CLUSTER_ALGO_RECORD_H
0011 #define L1_TRACK_TRIGGER_CLUSTER_ALGO_RECORD_H
0012 
0013 #include "FWCore/Framework/interface/EventSetupRecordImplementation.h"
0014 #include "FWCore/Framework/interface/DependentRecordImplementation.h"
0015 #include "MagneticField/Records/interface/IdealMagneticFieldRecord.h"
0016 #include "Geometry/Records/interface/GlobalTrackingGeometryRecord.h"
0017 
0018 #include "FWCore/Utilities/interface/mplVector.h"
0019 
0020 class TTClusterAlgorithmRecord
0021     : public edm::eventsetup::DependentRecordImplementation<TTClusterAlgorithmRecord,
0022                                                             edm::mpl::Vector<IdealMagneticFieldRecord> > {};
0023 #endif