#include <iosfwd>
#include "FWCore/ParameterSet/interface/ParameterSet.h"
#include "DataFormats/DetId/interface/DetId.h"
Go to the source code of this file.
Classes | |
class | CaloSimParameters |
Main class for Parameters in different subdetectors. More... | |
Functions | |
std::ostream & | operator<< (std::ostream &os, const CaloSimParameters &p) |
std::ostream& operator<< | ( | std::ostream & | os, | |
const CaloSimParameters & | p | |||
) |
Definition at line 32 of file CaloSimParameters.cc.
References dummy, lat::endl(), CaloSimParameters::photoelectronsToAnalog(), and CaloSimParameters::simHitToPhotoelectrons().
00032 { 00033 DetId dummy(0); 00034 os << "CALO SIM PARAMETERS" << std::endl; 00035 os << p.simHitToPhotoelectrons(dummy) << " pe per SimHit energy " << std::endl; 00036 os << p.photoelectronsToAnalog() << " Analog signal to be digitized per pe" << std::endl; 00037 os << " Incident energy / SimHit Energy " << std::endl; 00038 return os; 00039 }