BOSS 7.0.1
BESIII Offline Software System
Loading...
Searching...
No Matches
EvtDecayMode.hh
Go to the documentation of this file.
1//-----------------------------------------------------------------------
2// File and Version Information:
3// $Id: EvtDecayMode.hh,v 1.1.1.2 2007/10/26 05:03:14 pingrg Exp $
4//
5// Environment:
6// This software is part of the EvtGen package developed jointly
7// for the BaBar and CLEO collaborations. If you use all or part
8// of it, please give an appropriate acknowledgement.
9//
10// Copyright Information:
11// Copyright (C) 1998 Caltech, UCSB
12//
13// Module creator:
14// Alexei Dvoretskii, Caltech, 2001-2002.
15//-----------------------------------------------------------------------
16
17#ifndef EVT_DECAY_MODE_HH
18#define EVT_DECAY_MODE_HH
19
20#include <string>
21#include <vector>
23
24#include <iosfwd>
25
27
28public:
29
30 EvtDecayMode(const char* decay);
31 EvtDecayMode(const EvtDecayMode& other);
32 EvtDecayMode(std::string mother,std::vector<std::string> dau);
34
35 const char* mother() const;
36 int nD() const;
37 const char* dau(int i) const;
38
39 std::ostream& print(std::ostream&) const;
40
41
42 // Frequent name combinations
43
44 const char* m(EvtCyclic3::Pair i) const;
45 const char* q(EvtCyclic3::Pair i) const;
46 const char* dal(EvtCyclic3::Pair i, EvtCyclic3::Pair j) const;
47 const char* mode() const;
48
49private:
50
51 std::string _mother;
52 std::vector<std::string> _dau;
53
54};
55
56
57std::ostream& operator<<(std::ostream&,const EvtDecayMode&);
58
59#endif
std::ostream & operator<<(std::ostream &, const EvtDecayMode &)
****INTEGER imax DOUBLE PRECISION m_pi *DOUBLE PRECISION m_amfin DOUBLE PRECISION m_Chfin DOUBLE PRECISION m_Xenph DOUBLE PRECISION m_sinw2 DOUBLE PRECISION m_GFermi DOUBLE PRECISION m_MfinMin DOUBLE PRECISION m_ta2 INTEGER m_out INTEGER m_KeyFSR INTEGER m_KeyQCD *COMMON c_Semalib $ !copy of input $ !CMS energy $ !beam mass $ !final mass $ !beam charge $ !final charge $ !smallest final mass $ !Z mass $ !Z width $ !EW mixing angle $ !Gmu Fermi $ alphaQED at q
Definition: KKsem.h:33
const char * dal(EvtCyclic3::Pair i, EvtCyclic3::Pair j) const
const char * mother() const
const char * mode() const
int nD() const
const char * dau(int i) const
EvtDecayMode(std::string mother, std::vector< std::string > dau)
std::ostream & print(std::ostream &) const
const char * m(EvtCyclic3::Pair i) const