/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
RecoLocalMuon/GEMRecHit/src/ME0RecHitBaseAlgo.cc
34 строки
1 KB
Cms Build
Clang-Format
22 май 2019, 04:56
22 май 2019, 04:56
4ea0d4c
Код
Авторство
О чём код?
/* * See header file for a description of this class. * * $Date: 2014/02/04 10:16:35 $ * $Revision: 1.1 $ * \author M. Maggi -- INFN Bari */ #include "RecoLocalMuon/GEMRecHit/interface/ME0RecHitBaseAlgo.h" #include "Geometry/GEMGeometry/interface/ME0EtaPartition.h" #include "DataFormats/GEMDigi/interface/ME0DigiPreRecoCollection.h" #include "FWCore/ParameterSet/interface/ParameterSet.h" ME0RecHitBaseAlgo::ME0RecHitBaseAlgo(const edm::ParameterSet& config) {} ME0RecHitBaseAlgo::~ME0RecHitBaseAlgo() {} // Build all hits in the range associated to the layerId, at the 1st step. edm::OwnVector<ME0RecHit> ME0RecHitBaseAlgo::reconstruct(const ME0DetId& me0Id, const ME0DigiPreRecoCollection::Range& digiRange) { edm::OwnVector<ME0RecHit> result; for (ME0DigiPreRecoCollection::const_iterator digi = digiRange.first; digi != digiRange.second; digi++) { LocalError tmpErr; LocalPoint point; // Call the compute method bool OK = this->compute(*digi, point, tmpErr); if (!OK) continue; ME0RecHit* recHit = new ME0RecHit(me0Id, digi->tof(), point, tmpErr); result.push_back(recHit); } return result; }