/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
L1Trigger/CSCTriggerPrimitives/interface/LCTContainer.h
55 строк
2 KB
Sven Dildick
Code format
23 июн 2021, 22:57
23 июн 2021, 22:57
3c3a2f3
Код
Авторство
О чём код?
#ifndef L1Trigger_CSCTriggerPrimitives_LCTContainer_h #define L1Trigger_CSCTriggerPrimitives_LCTContainer_h /** \class LCTContainer * * This class is a helper class that contains LCTs per BX * * Author: Nick McColl * */ #include "DataFormats/CSCDigi/interface/CSCCorrelatedLCTDigi.h" #include "DataFormats/CSCDigi/interface/CSCConstants.h" #include <vector> #include <algorithm> /** for the case when more than 2 LCTs/BX are allowed; maximum match window = 15 */ class LCTContainer { public: // constructor LCTContainer(unsigned int trig_window_size); // default constructor LCTContainer() {} // access the LCT in a particular ALCT BX, a particular CLCT matched BX // and particular LCT number CSCCorrelatedLCTDigi& operator()(int bx, int match_bx, int lct); // get the matching LCTs for a certain ALCT BX void getTimeMatched(const int bx, std::vector<CSCCorrelatedLCTDigi>&) const; // get all LCTs in the 16 BX readout window void getMatched(std::vector<CSCCorrelatedLCTDigi>&) const; // clear the array with stubs void clear(); void setMatchTrigWindowSize(unsigned trig_window_size) { match_trig_window_size_ = trig_window_size; } private: // array with stored LCTs // 1st index: depth of pipeline that stores the ALCT and CLCT // 2nd index: BX number of the ALCT-CLCT match in the matching window // 3rd index: LCT number in the time bin CSCCorrelatedLCTDigi data[CSCConstants::MAX_LCT_TBINS][CSCConstants::MAX_MATCH_WINDOW_SIZE] [CSCConstants::MAX_LCTS_PER_CSC]; // matching trigger window unsigned match_trig_window_size_; }; #endif