CMS 3D CMS Logo

Functions
helicityAngle.h File Reference
#include "DataFormats/Candidate/interface/CandidateFwd.h"

Go to the source code of this file.

Functions

double helicityAngle (const reco::Candidate &c)
 
double helicityAngle (const reco::Candidate &mother, const reco::Candidate &daughter)
 return the helicity angle for two particles. More...
 

Function Documentation

◆ helicityAngle() [1/2]

double helicityAngle ( const reco::Candidate c)

return the helicity angle of a two body decay with daughter automatically retreived Note: asserts if the candidate does not have two daughters

Definition at line 18 of file helicityAngle.cc.

18  {
19  assert(cand.numberOfDaughters() == 2);
20  return helicityAngle(cand, *cand.daughter(0));
21 }

References cms::cuda::assert(), and helicityAngle().

◆ helicityAngle() [2/2]

double helicityAngle ( const reco::Candidate mother,
const reco::Candidate daughter 
)

return the helicity angle for two particles.

helicityAngle

Utility function that returns the helicity angle It is defined as the angle between the candidate momentum and one of the daughters momentum in the mother's center-of-mass reference frame. This angle has a two-fold ambiguity (h, pi - h ), and by convention the angle smaller than pi/2 is chosen.

Author
Luca Lista, INFN
Version
Revision
1.7
Id
helicityAngle.h,v 1.7 2007/12/11 08:42:52 hegner Exp

Definition at line 9 of file helicityAngle.cc.

9  {
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 }

References h, M_PI, and reco::Candidate::p4().

Referenced by helicityAngle().

h
FWCore Framework interface EventSetupRecordImplementation h
Helper function to determine trigger accepts.
Definition: L1TUtmAlgorithmRcd.h:4
cms::cuda::assert
assert(be >=bs)
boost
Definition: CLHEP.h:16
Vector
ROOT::Math::Plane3D::Vector Vector
Definition: EcalHitMaker.cc:29
h
helicityAngle
double helicityAngle(const reco::Candidate &mother, const reco::Candidate &daughter)
return the helicity angle for two particles.
Definition: helicityAngle.cc:9
cand
Definition: decayParser.h:32
M_PI
#define M_PI
Definition: BXVectorInputProducer.cc:49
reco::JetExtendedAssociation::LorentzVector
math::PtEtaPhiELorentzVectorF LorentzVector
Definition: JetExtendedAssociation.h:25
reco::Candidate::p4
virtual const LorentzVector & p4() const =0
four-momentum Lorentz vector