BOSS 7.0.8
BESIII Offline Software System
Loading...
Searching...
No Matches
EvtLambdac2pKpi.hh
Go to the documentation of this file.
1//--------------------------------------------------------------------------
2//
3// Environment:
4// This software is part of the EvtGen package developed jointly
5// for the BaBar and CLEO collaborations. If you use all or part
6// of it, please give an appropriate acknowledgement.
7//
8// Copyright Information: See EvtGen/COPYRIGHT
9// Copyright (C) 1998 Caltech, UCSB
10//
11// Module: EvtGen/EvtLambdac2pKpi.hh
12//
13// Description:
14//Class to handle generic phase space decays not done
15//in other decay models.
16//
17// Modification history:
18//
19// DJL/RYD August 11, 1998 Module created
20//
21//------------------------------------------------------------------------
22
23#ifndef EVTLAMBDAC2PKPI_HH
24#define EVTLAMBDAC2PKPI_HH
25
28#include <vector>
29#include <iostream>
30#include <fstream>
31
32using namespace std;
33
34class EvtParticle;
35
37
38public:
39
41 virtual ~EvtLambdac2pKpi();
42
43 void getName(std::string& name);
44
46
47 void initProbMax();
48
49 void init();
50
51 void decay(EvtParticle *p);
52
53private:
54 std::string m_inputFileName;
55 ifstream m_inputFile;
56 int nParticles;
57 int idParticles[100];
58 double pxParticle;
59 double pyParticle;
60 double pzParticle;
61 double eParticle;
62 static std::vector<std::vector<EvtVector4R> >Evt;
63 int Ntot;
64};
65
66#endif
67
void decay(EvtParticle *p)
EvtDecayBase * clone()
virtual ~EvtLambdac2pKpi()
void getName(std::string &name)