#include "SimCalorimetry/CaloSimAlgos/interface/CaloSimParameters.h"
#include "FWCore/Utilities/interface/Exception.h"
#include <iostream>
Go to the source code of this file.
Functions | |
std::ostream & | operator<< (std::ostream &os, const CaloSimParameters &p) |
std::ostream& operator<< | ( | std::ostream & | os, |
const CaloSimParameters & | p | ||
) |
Definition at line 42 of file CaloSimParameters.cc.
References CaloSimParameters::photoelectronsToAnalog(), and CaloSimParameters::simHitToPhotoelectrons().
{ DetId dummy(0); os << "CALO SIM PARAMETERS" << std::endl; os << p.simHitToPhotoelectrons(dummy) << " pe per SimHit energy " << std::endl; os << p.photoelectronsToAnalog() << " Analog signal to be digitized per pe" << std::endl; os << " Incident energy / SimHit Energy " << std::endl; return os; }