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 3416 of file PFAlgo.cc.

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

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