/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
CondTools/DT/interface/DTHVHandler.h
71 строка
2 KB
Christopher Jones
Replace forward references with includes of Fwd.h files
18 фев 2026, 17:29
18 фев 2026, 17:29
bb39da7
Код
Авторство
О чём код?
#ifndef DTHVHandler_H #define DTHVHandler_H /** \class DTHVHandler * * Description: * Class to analyze high voltage status * * $Date: 2008/11/20 12:00:00 $ * $Revision: 1.1 $ * \author Paolo Ronchese INFN Padova * */ //---------------------- // Base Class Headers -- //---------------------- //------------------------------------ // Collaborating Class Declarations -- //------------------------------------ #include "DataFormats/MuonDetId/interface/DTChamberIdFwd.h" class DTHVStatus; //class DTLayerId; class DTWireId; //class DTGeometry; //--------------- // C++ Headers -- //--------------- #include <string> #include <vector> // --------------------- // -- Class Interface -- // --------------------- class DTHVHandler { public: /** Constructor */ DTHVHandler(); DTHVHandler(const DTHVStatus* dbObject); // DTHVHandler( const DTHVStatus* dbObject, // const DTGeometry* geometry ); /** Destructor */ ~DTHVHandler(); /** Operations */ /// get content int get(const DTWireId& id, int& flagA, int& flagC, int& flagS) const; int offChannelsNumber() const; int offChannelsNumber(const DTChamberId& id) const; /// access db object const DTHVStatus* getDBObject() const; private: const DTHVStatus* objectPtr; // const DTGeometry* dtGeomPtr; // int findLayerPart( const DTWireId& id ) const; // int getLayerEdges( const DTLayerId& id, // int& fCell, int& lCell ) const; // int getLayerEdges( const DTLayerId& id, int part, // int& fCell, int& lCell ) const; }; #endif // DTHVHandler_H