/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
DataFormats/HcalDigi/interface/CastorDataFrame.h
66 строк
2 KB
Cms Build
Clang-Format
11 июн 2019, 11:30
11 июн 2019, 11:30
044a211
Код
Авторство
О чём код?
#ifndef DIGIHCAL_CASTORDATAFRAME_H #define DIGIHCAL_CASTORDATAFRAME_H #include "DataFormats/HcalDetId/interface/HcalCastorDetId.h" #include "DataFormats/HcalDetId/interface/HcalElectronicsId.h" #include "DataFormats/HcalDigi/interface/HcalQIESample.h" #include <vector> #include <ostream> /** \class CastorDataFrame Precision readout digi for Castor */ class CastorDataFrame { public: typedef HcalCastorDetId key_type; ///< For the sorted collection CastorDataFrame(); // for persistence explicit CastorDataFrame(const HcalCastorDetId& id); const HcalCastorDetId& id() const { return id_; } // ElecId not yet specified const HcalElectronicsId& elecId() const { return electronicsId_; } /// total number of samples in the digi int size() const { return size_ & 0xF; } /// number of samples before the sample from the triggered beam crossing (according to the hardware) int presamples() const { return hcalPresamples_ & 0xF; } /// was ZS MarkAndPass? bool zsMarkAndPass() const { return (hcalPresamples_ & 0x10); } /// was ZS unsuppressed? bool zsUnsuppressed() const { return (hcalPresamples_ & 0x20); } /// zs crossing mask (which sums considered) uint32_t zsCrossingMask() const { return (hcalPresamples_ & 0x3FF000) >> 12; } /// access a sample const HcalQIESample& operator[](int i) const { return data_[i]; } /// access a sample const HcalQIESample& sample(int i) const { return data_[i]; } /// offset of bunch number for this channel relative to nominal set in the unpacker (range is +7->-7. -1000 indicates the data is invalid/unavailable) int fiberIdleOffset() const; /// validate appropriate DV and ER bits as well as capid rotation for the specified samples (default is all) bool validate(int firstSample = 0, int nSamples = 100) const; void setSize(int size); void setPresamples(int ps); void setZSInfo(bool unsuppressed, bool markAndPass, uint32_t crossingMask = 0); void setSample(int i, const HcalQIESample& sam) { data_[i] = sam; } void setFiberIdleOffset(int offset); // ElecId not yet specified void setReadoutIds(const HcalElectronicsId& eid); static const int MAXSAMPLES = 10; private: HcalCastorDetId id_; // ElecId not yet specified HcalElectronicsId electronicsId_; int size_; int hcalPresamples_; HcalQIESample data_[MAXSAMPLES]; }; std::ostream& operator<<(std::ostream&, const CastorDataFrame&); #endif