/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
DQM/HcalCommon/interface/ContainerProf1D.h
52 строки
2 KB
Cms Build
Clang-Format
09 май 2019, 07:10
09 май 2019, 07:10
8b014b7
Код
Авторство
О чём код?
#ifndef ContainerProf1D_h #define ContainerProf1D_h /* * file: ContainerProf1D.h * Author: Viktor Khristenko * * Description: * Container to hold TProfiles. * Direct Inheritance from Container1D + some more funcs * */ #include "DQM/HcalCommon/interface/Container1D.h" #include <string> #include <vector> namespace hcaldqm { class ContainerProf1D : public Container1D { public: ContainerProf1D(); ContainerProf1D(std::string const &folder, hashfunctions::HashType, quantity::Quantity *, quantity::Quantity *); ~ContainerProf1D() override {} void initialize(std::string const &folder, hashfunctions::HashType, quantity::Quantity *, quantity::Quantity *, int debug = 0) override; void initialize(std::string const &folder, std::string const &qname, hashfunctions::HashType, quantity::Quantity *, quantity::Quantity *, int debug = 0) override; // booking void book(DQMStore::IBooker &, HcalElectronicsMap const *, std::string subsystem = "Hcal", std::string aux = "") override; void book(DQMStore::IBooker &, HcalElectronicsMap const *, filter::HashFilter const &, std::string subsystem = "Hcal", std::string aux = "") override; }; } // namespace hcaldqm #endif