/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
RecoLocalMuon/GEMCSCSegment/plugins/GEMCSCSegmentAlgorithm.h
42 строки
1 KB
Shahzad Malik Muzaffar
[RECONSTRUCTION-UPGRADE] Changes suggested by new llvm18 clang-format
05 сен 2024, 17:16
05 сен 2024, 17:16
9e8dfa3
Код
Авторство
О чём код?
#ifndef GEMRecHit_GEMCSCSegmentAlgorithm_h #define GEMRecHit_GEMCSCSegmentAlgorithm_h /** \class GEMCSCSegmentAlgo * * An abstract base class for algorithmic classes used to * build segments combining CSC and GEM information. * * $Date: $ * $Revision: 1.7 $ * \author Raffaella Radogna * */ #include <DataFormats/CSCRecHit/interface/CSCRecHit2DCollection.h> #include <DataFormats/CSCRecHit/interface/CSCSegment.h> #include <Geometry/CSCGeometry/interface/CSCChamber.h> #include <DataFormats/GEMRecHit/interface/GEMRecHitCollection.h> #include <DataFormats/GEMRecHit/interface/GEMCSCSegment.h> #include <Geometry/GEMGeometry/interface/GEMEtaPartition.h> #include <FWCore/Framework/interface/Frameworkfwd.h> #include <vector> #include <map> class GEMCSCSegmentAlgorithm { public: /// Constructor explicit GEMCSCSegmentAlgorithm(const edm::ParameterSet&) {} /// Destructor virtual ~GEMCSCSegmentAlgorithm() {} /// Run the algorithm = build segments virtual std::vector<GEMCSCSegment> run(const std::map<uint32_t, const CSCLayer*>& csclayermap, const std::map<uint32_t, const GEMEtaPartition*>& gemrollmap, const std::vector<const CSCSegment*>& cscsegments, const std::vector<const GEMRecHit*>& gemrechits) = 0; private: }; #endif