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
PhysicsTools
IsolationAlgos
interface
PropagateToCal.h
Go to the documentation of this file.
1
#ifndef IsolationUtils_PropagateToCal_h
2
#define IsolationUtils_PropagateToCal_h
3
/* \class PropagateToCal
4
*
5
* \author Christian Autermann, U Hamburg
6
*
7
* class extrapolats a charged particle to the calorimeter surface
8
* using the SteppingHelixPropagator.
9
*
10
*/
11
#include <algorithm>
12
#include <vector>
13
#include "
MagneticField/Engine/interface/MagneticField.h
"
14
#include "
MagneticField/Records/interface/IdealMagneticFieldRecord.h
"
15
#include "
TrackPropagation/SteppingHelixPropagator/interface/SteppingHelixPropagator.h
"
16
#include "
TrackingTools/TrajectoryState/interface/TrajectoryStateOnSurface.h
"
17
#include "
TrackingTools/TrajectoryState/interface/FreeTrajectoryState.h
"
18
#include "
TrackingTools/TrajectoryParametrization/interface/GlobalTrajectoryParameters.h
"
19
#include "
DataFormats/GeometryVector/interface/GlobalPoint.h
"
20
#include "
DataFormats/GeometryVector/interface/GlobalVector.h
"
21
#include "
DataFormats/GeometrySurface/interface/Plane.h
"
22
#include "
DataFormats/GeometrySurface/interface/Cylinder.h
"
23
24
class
MagneticField
;
25
26
class
PropagateToCal
{
27
public
:
28
PropagateToCal
();
29
~PropagateToCal
();
30
PropagateToCal
(
double
radius
,
double
minZ
,
double
maxZ
,
bool
theIgnoreMaterial);
31
bool
propagate
(
const
GlobalPoint
&
vertex
,
GlobalVector
& Cand,
int
charge
,
const
MagneticField
*
bField
)
const
;
32
33
private
:
34
bool
theIgnoreMaterial_
;
35
double
radius_
,
maxZ_
,
minZ_
;
36
};
37
38
#endif
CosmicsPD_Skims.maxZ
maxZ
Definition:
CosmicsPD_Skims.py:136
bphysicsOniaDQM_cfi.vertex
vertex
Definition:
bphysicsOniaDQM_cfi.py:7
Vector3DBase
Definition:
Vector3DBase.h:8
PropagateToCal::maxZ_
double maxZ_
Definition:
PropagateToCal.h:35
Plane.h
PropagateToCal::radius_
double radius_
whether or not propagation should ignore material
Definition:
PropagateToCal.h:35
PropagateToCal::theIgnoreMaterial_
bool theIgnoreMaterial_
Definition:
PropagateToCal.h:34
SteppingHelixPropagator.h
MagneticField
Definition:
MagneticField.h:19
Calorimetry_cff.bField
bField
Definition:
Calorimetry_cff.py:284
MagneticField.h
CosmicsPD_Skims.radius
radius
Definition:
CosmicsPD_Skims.py:135
PropagateToCal
Definition:
PropagateToCal.h:26
ALCARECOTkAlJpsiMuMu_cff.charge
charge
Definition:
ALCARECOTkAlJpsiMuMu_cff.py:47
GlobalTrajectoryParameters.h
PropagateToCal::minZ_
double minZ_
Definition:
PropagateToCal.h:35
GlobalVector.h
CosmicGenFilterHelix_cff.minZ
minZ
i.e.
Definition:
CosmicGenFilterHelix_cff.py:9
Point3DBase< float, GlobalTag >
TrajectoryStateOnSurface.h
PropagateToCal::PropagateToCal
PropagateToCal()
PropagateToCal::propagate
bool propagate(const GlobalPoint &vertex, GlobalVector &Cand, int charge, const MagneticField *bField) const
Definition:
PropagateToCal.cc:15
Cylinder.h
PropagateToCal::~PropagateToCal
~PropagateToCal()
Definition:
PropagateToCal.cc:13
FreeTrajectoryState.h
IdealMagneticFieldRecord.h
GlobalPoint.h
Generated for CMSSW Reference Manual by
1.8.14