/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
FWCore/Utilities/interface/StreamID.h
58 строк
1 KB
Christopher Jones
Fix `scram b code-checks` warnings associated with FWCore
08 сен 2020, 22:04
08 сен 2020, 22:04
24df5ff
Код
Авторство
О чём код?
#ifndef FWCore_Utilities_StreamID_h #define FWCore_Utilities_StreamID_h // -*- C++ -*- // // Package: FWCore/Utilities // Class : edm::StreamID // /**\class edm::StreamID StreamID.h "FWCore/Utilities/interface/StreamID.h" Description: Identifies an edm stream Usage: Various APIs use this type to allow access to per stream information. */ // // Original Author: Chris Jones // Created: Fri, 26 Apr 2013 19:37:37 GMT // // system include files // user include files // forward declarations namespace edm { class Schedule; class EventPrincipal; class StreamID { public: ~StreamID() = default; StreamID() = delete; StreamID(const StreamID&) = default; StreamID& operator=(const StreamID&) = default; bool operator==(const StreamID& iID) const { return iID.value_ == value_; } operator unsigned int() const { return value_; } /** \return value ranging from 0 to one less than max number of streams. */ unsigned int value() const { return value_; } static StreamID invalidStreamID() { return StreamID(0xFFFFFFFFU); } private: ///Only a Schedule is allowed to create one of these friend class Schedule; friend class EventPrincipal; explicit StreamID(unsigned int iValue) : value_(iValue) {} // ---------- member data -------------------------------- unsigned int value_; }; } // namespace edm #endif