AnalysisDataFormats
TopObjects
src
printParticle.cc
Go to the documentation of this file.
1
// -*- C++ -*-
2
//
3
// Package: AnalysisDataFormats/TopObjects
4
// Class : printParticle
5
//
6
// Implementation:
7
// [Notes on implementation]
8
//
9
// Original Author: Christopher Jones
10
// Created: Fri, 16 Oct 2020 13:25:54 GMT
11
//
12
13
// system include files
14
15
// user include files
16
#include "
AnalysisDataFormats/TopObjects/src/printParticle.h
"
17
18
namespace
ttevent
{
19
// print pt, eta, phi, mass of a given candidate into an existing LogInfo
20
void
printParticle
(
edm::LogInfo
&
log
,
const
char
*
name
,
const
reco::Candidate
*
cand
) {
21
if
(!
cand
) {
22
log
<< std::setw(15) <<
name
<<
": not available!\n"
;
23
return
;
24
}
25
log
<< std::setprecision(3) << setiosflags(
std::ios::fixed
| std::ios::showpoint);
26
log
<< std::setw(15) <<
name
<<
": "
<< std::setw(7) <<
cand
->pt() <<
"; "
<< std::setw(7) <<
cand
->eta() <<
"; "
27
<< std::setw(7) <<
cand
->phi() <<
"; "
<< resetiosflags(
std::ios::fixed
| std::ios::showpoint)
28
<< setiosflags(std::ios::scientific) << std::setw(10) <<
cand
->mass() <<
"\n"
;
29
log
<< resetiosflags(std::ios::scientific);
30
}
31
32
}
// namespace ttevent
alignBH_cfg.fixed
fixed
Definition:
alignBH_cfg.py:54
printParticle.h
ttevent
Definition:
printParticle.cc:18
ttevent::printParticle
void printParticle(edm::LogInfo &log, const char *name, const reco::Candidate *cand)
print pt, eta, phi, mass of a given candidate into an existing LogInfo
Definition:
printParticle.cc:20
cand
Definition:
decayParser.h:32
reco::Candidate
Definition:
Candidate.h:27
Skims_PA_cff.name
name
Definition:
Skims_PA_cff.py:17
dqm-mbProfile.log
log
Definition:
dqm-mbProfile.py:17
edm::Log
Definition:
MessageLogger.h:70
Generated for CMSSW Reference Manual by
1.8.16