CMS 3D CMS Logo

Functions
PFAlgo.cc File Reference
#include "FWCore/MessageLogger/interface/MessageLogger.h"
#include "RecoParticleFlow/PFProducer/interface/PFAlgo.h"
#include "RecoParticleFlow/PFProducer/interface/PFMuonAlgo.h"
#include "RecoParticleFlow/PFProducer/interface/PFElectronExtraEqual.h"
#include "RecoParticleFlow/PFTracking/interface/PFTrackAlgoTools.h"
#include "TDecompChol.h"
#include <numeric>
#include <fstream>

Go to the source code of this file.

Functions

ostream & operator<< (ostream &out, const PFAlgo &algo)
 

Function Documentation

◆ operator<<()

ostream& operator<< ( ostream &  out,
const PFAlgo algo 
)

Definition at line 3414 of file PFAlgo.cc.

References DummyCfis::c, and MillePedeFileConverter_cfg::out.

3414  {
3415  if (!out)
3416  return out;
3417 
3418  out << "====== Particle Flow Algorithm ======= ";
3419  out << endl;
3420  out << "nSigmaECAL_ " << algo.nSigmaECAL_ << endl;
3421  out << "nSigmaHCAL_ " << algo.nSigmaHCAL_ << endl;
3422  out << "nSigmaHFEM_ " << algo.nSigmaHFEM_ << endl;
3423  out << "nSigmaHFHAD_ " << algo.nSigmaHFHAD_ << endl;
3424  out << endl;
3425  out << algo.calibration_ << endl;
3426  out << endl;
3427  out << "reconstructed particles: " << endl;
3428 
3429  if (!algo.pfCandidates_.get()) {
3430  out << "candidates already transfered" << endl;
3431  return out;
3432  }
3433  for (auto const& c : *algo.pfCandidates_)
3434  out << c << endl;
3435 
3436  return out;
3437 }