Main Page
Namespaces
Classes
Package Documentation
CommonTools
CandUtils
src
helicityAngle.cc
Go to the documentation of this file.
1
// $Id: helicityAngle.cc,v 1.14 2007/12/11 08:42:53 hegner Exp $
2
#include "
CommonTools/CandUtils/interface/helicityAngle.h
"
3
#include "
DataFormats/Candidate/interface/Candidate.h
"
4
#include "
CommonTools/CandUtils/interface/Booster.h
"
5
#include <Math/VectorUtil.h>
6
using namespace
reco
;
7
using namespace
std
;
8
9
double
helicityAngle
(
const
reco::Candidate
& mother,
const
reco::Candidate
& daughter) {
10
Particle::Vector
boost
= mother.
p4
().BoostToCM();
11
Particle::LorentzVector
pdau = ROOT::Math::VectorUtil::boost(daughter.
p4
(), boost);
12
double
h
= ROOT::Math::VectorUtil::Angle(pdau, boost);
13
if
(h >
M_PI
/ 2)
14
h =
M_PI
-
h
;
15
return
h
;
16
}
17
18
double
helicityAngle
(
const
Candidate
&
cand
) {
19
assert(cand.
numberOfDaughters
() == 2);
20
return
helicityAngle
(cand, *cand.
daughter
(0));
21
}
h
FWCore Framework interface EventSetupRecordImplementation h
Helper function to determine trigger accepts.
Definition:
L1TUtmAlgorithmRcd.h:4
boost
Definition:
CLHEP.h:16
reco::Candidate::daughter
virtual const Candidate * daughter(size_type i) const =0
return daughter at a given position, i = 0, ... numberOfDaughters() - 1 (read only mode) ...
reco::Candidate
Definition:
Candidate.h:28
std
Definition:
JetResolutionObject.h:76
helicityAngle
double helicityAngle(const reco::Candidate &mother, const reco::Candidate &daughter)
return the helicity angle for two particles.
Definition:
helicityAngle.cc:9
Candidate.h
helicityAngle.h
reco::Candidate::p4
virtual const LorentzVector & p4() const =0
four-momentum Lorentz vector
M_PI
#define M_PI
Definition:
BXVectorInputProducer.cc:50
reco
fixed size matrix
Definition:
AlignmentAlgorithmBase.h:45
reco::Particle::Vector
math::XYZVector Vector
point in the space
Definition:
Particle.h:27
cand
Definition:
decayParser.h:34
reco::Candidate::numberOfDaughters
virtual size_type numberOfDaughters() const =0
number of daughters
Booster.h
reco::Particle::LorentzVector
math::XYZTLorentzVector LorentzVector
Lorentz vector.
Definition:
Particle.h:21
Generated for CMSSW Reference Manual by
1.8.11