/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
RecoLocalMuon/CSCSegment/src/CSCSegmentAlgorithm.h
37 строк
1 KB
Shahzad Malik Muzaffar
[RECONSTRUCTION] Changes suggested by new llvm18 clang-format
05 сен 2024, 17:05
05 сен 2024, 17:05
a09aaae
Код
Авторство
О чём код?
#ifndef CSCSegment_CSCSegmentAlgorithm_h #define CSCSegment_CSCSegmentAlgorithm_h /** \class CSCSegmentAlgo * An abstract base class for algorithmic classes used to * build segments in one chamber of an Endcap Muon CSC. * * Implementation notes: <BR> * For example, CSCSegmentizerSK inherits from this class, * and classes ported from ORCA local reco inherit from that. * * \author M. Sani * */ #include <DataFormats/CSCRecHit/interface/CSCRecHit2DCollection.h> #include <DataFormats/CSCRecHit/interface/CSCSegment.h> #include <Geometry/CSCGeometry/interface/CSCChamber.h> #include <FWCore/Framework/interface/Frameworkfwd.h> #include <vector> class CSCSegmentAlgorithm { public: /// Constructor explicit CSCSegmentAlgorithm(const edm::ParameterSet&) {} /// Destructor virtual ~CSCSegmentAlgorithm() {} /** Run the algorithm = build the segments in this chamber */ virtual std::vector<CSCSegment> run(const CSCChamber* chamber, const std::vector<const CSCRecHit2D*>& rechits) = 0; private: }; #endif