CMS 3D CMS Logo

Classes | Functions

/data/doxygen/doxygen-1.7.3/gen/CMSSW_4_2_8/src/SimCalorimetry/CaloSimAlgos/interface/CaloSimParameters.h File Reference

#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)

Function Documentation

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;
}