Main Page
+
Namespaces
Namespace List
+
Namespace Members
+
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Typedefs
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Enumerations
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
z
+
Enumerator
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Classes
Class List
Class Index
Class Hierarchy
+
Class Members
+
All
:
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
+
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
+
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Typedefs
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Enumerations
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
+
Enumerator
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Properties
_
a
c
d
e
f
l
m
o
p
s
t
u
v
+
Related Functions
:
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
Package Documentation
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Modules
Pages
src
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
reco::Candidate
Definition:
Candidate.h:27
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
edm::Log
Definition:
MessageLogger.h:70
cand
Definition:
decayParser.h:32
dqm-mbProfile.log
log
Definition:
dqm-mbProfile.py:17
printParticle.h
ttevent
Definition:
printParticle.cc:18
Skims_PA_cff.name
name
Definition:
Skims_PA_cff.py:17
Generated for CMSSW Reference Manual by
1.8.14