/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
DataFormats/MuonDetId/src/DTSectCollId.cc
33 строки
776 B
Cms Build
Clang-Format
11 июн 2019, 11:29
11 июн 2019, 11:29
3ae6549
Код
Авторство
О чём код?
//------------------------------------------------- // // Class: DTSectCollId.cc // // Description: Definition of sector collectors // // // Author List: // S. Marcellini // Modifications: // 11/12/06 C.Battilana : new SectCollId definitions // // //-------------------------------------------------- //----------------------- // This Class's Header -- //----------------------- #include "DataFormats/MuonDetId/interface/DTSectCollId.h" //------------------------------- // Collaborating Class Headers -- //------------------------------- //--------------- // C++ Headers -- //--------------- #include <iostream> std::ostream& operator<<(std::ostream& os, const DTSectCollId& id) { os << "Wheel: " << id.wheel() << " Sector: " << id.sector(); return os; }