/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
DataFormats/SiStripCluster/src/SiStripApproximateClusterCollection.cc
13 строк
484 B
Jeongeun Lee
minor fix
11 авг 2023, 10:11
11 авг 2023, 10:11
cfc86e3
Код
Авторство
О чём код?
#include "DataFormats/SiStripCluster/interface/SiStripApproximateClusterCollection.h" void SiStripApproximateClusterCollection::reserve(std::size_t dets, std::size_t clusters) { detIds_.reserve(dets); beginIndices_.reserve(dets); clusters_.reserve(clusters); } SiStripApproximateClusterCollection::Filler SiStripApproximateClusterCollection::beginDet(unsigned int detId) { detIds_.push_back(detId); beginIndices_.push_back(clusters_.size()); return Filler(clusters_); }