BOSS 8.0.0
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
26class EvtParticle;
27
28class EvtmH2 : public EvtDecayIncoherent {
29
30public:
31 EvtmH2() {}
32 virtual ~EvtmH2();
33
34 void getName( std::string& name );
35
37
38 void initProbMax();
39
40 void init();
41
42 void decay( EvtParticle* p );
43
44 const char* setFileName(); // Defined by user for specify the root file name
45 const char* setHpoint(); // Defined by user for specify the histor. id
46
47private:
48 int nbx, nby;
49};
50
51#endif
void initProbMax()
Definition EvtmH2.cc:70
void init()
Definition EvtmH2.cc:62
EvtDecayBase * clone()
Definition EvtmH2.cc:60
const char * setFileName()
Definition UsermH2.cc:10
void getName(std::string &name)
Definition EvtmH2.cc:58
const char * setHpoint()
Definition UsermH2.cc:16
EvtmH2()
Definition EvtmH2.hh:31
void decay(EvtParticle *p)
Definition EvtmH2.cc:72
virtual ~EvtmH2()
Definition EvtmH2.cc:56