Belle II Software  release-05-02-19
ParameterVariables.h
1 /**************************************************************************
2  * BASF2 (Belle Analysis Framework 2) *
3  * Copyright(C) 2010 - Belle II Collaboration *
4  * *
5  * Author: The Belle II Collaboration *
6  * Contributors: Thomas Keck *
7  * *
8  * This software is provided "as is" without any warranty. *
9  **************************************************************************/
10 
11 #pragma once
12 
13 #include <vector>
14 
15 namespace Belle2 {
20  class Particle;
21 
22  namespace Variable {
23 
27  double NumberOfMCParticlesInEvent(const Particle*, const std::vector<double>& pdg);
28 
34  double isAncestorOf(const Particle* part, const std::vector<double>& daughterIDs);
35 
42  double hasAncestor(const Particle* part, const std::vector<double>& args);
43 
47  double particleDecayAngle(const Particle* particle, const std::vector<double>& daughters);
48 
52  double daughterInvariantMass(const Particle* particle, const std::vector<double>& daughter_indexes);
53 
57  double daughterMCInvariantMass(const Particle* particle, const std::vector<double>& daughter_indexes);
58 
62  double massDifference(const Particle* particle, const std::vector<double>& daughter_index);
63 
67  double massDifferenceError(const Particle* particle, const std::vector<double>& daughter_index);
68 
73  double massDifferenceSignificance(const Particle* particle, const std::vector<double>& daughter_index);
74 
78  double pointingAngle(const Particle* particle, const std::vector<double>& daughters);
79 
83  double azimuthalAngleInDecayPlane(const Particle* particle, const std::vector<double>& daughters);
84 
88  double v0DaughterD0(const Particle* particle, const std::vector<double>& daughterID);
89 
93  double v0DaughterD0Diff(const Particle* particle);
94 
98  double v0DaughterZ0(const Particle* particle, const std::vector<double>& daughterID);
99 
103  double v0DaughterZ0Diff(const Particle* particle);
104 
105  }
107 }
Belle2
Abstract base class for different kinds of events.
Definition: MillepedeAlgorithm.h:19