/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
SimDataFormats/CaloHit/src/MaterialInformation.cc
11 строк
505 B
Sunanda
Code check
10 май 2021, 17:57
10 май 2021, 17:57
ed5e520
Код
Авторство
О чём код?
#include "SimDataFormats/CaloHit/interface/MaterialInformation.h" #include <iomanip> #include <iostream> std::ostream& operator<<(std::ostream& o, const MaterialInformation& info) { o << info.vname() << " ID " << info.id() << " Eta:Phi " << info.trackEta() << ":" << info.trackPhi() << " Step Length " << std::setw(10) << info.stepLength() << " Radiation Length " << std::setw(10) << info.radiationLength() << " Interaction Length " << std::setw(10) << info.interactionLength(); return o; }