CGEM BOSS 6.6.5.g
BESIII Offline Software System
Loading...
Searching...
No Matches
EvtmH2.hh
Go to the documentation of this file.
1//--------------------------------------------------------------------------
2//
3// Environment:
4// This software is part of models developed at BES collaboration
5// based on the EvtGen framework. If you use all or part
6// of it, please give an appropriate acknowledgement.
7//
8// Copyright Information: See EvtGen/BesCopyright
9// Copyright (A) 2006 Ping Rong-Gang @IHEP
10//
11// Module: EvtMassH1.hh
12// Description: Routine to decay a particle using a scatter
13// plot forn n-body decays (n>3).
14//
15//
16// Modification history:
17//
18// Ping R.-G. Oct 2011 Module created
19//
20//------------------------------------------------------------------------
21#ifndef EVTmH2_HH
22#define EVTmH2_HH
23
25
26
27class EvtParticle;
28
30
31public:
32
33 EvtmH2() {}
34 virtual ~EvtmH2();
35
36 void getName(std::string& name);
37
39
40 void initProbMax();
41
42 void init();
43
44 void decay(EvtParticle *p);
45
46 const char* setFileName(); //Defined by user for specify the root file name
47 const char* setHpoint(); //Defined by user for specify the histor. id
48
49private:
50 int nbx,nby;
51};
52
53#endif
54
Definition: EvtmH2.hh:29
void initProbMax()
Definition: EvtmH2.cc:80
void init()
Definition: EvtmH2.cc:72
EvtDecayBase * clone()
Definition: EvtmH2.cc:65
const char * setFileName()
Definition: UsermH2.cc:10
void getName(std::string &name)
Definition: EvtmH2.cc:59
const char * setHpoint()
Definition: UsermH2.cc:16
EvtmH2()
Definition: EvtmH2.hh:33
void decay(EvtParticle *p)
Definition: EvtmH2.cc:86
virtual ~EvtmH2()
Definition: EvtmH2.cc:57