BOSS 8.0.0
BESIII Offline Software System
Loading...
Searching...
No Matches
EvtMBody3.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: EvtBody3.cc //Modified Body3 model
12//
13// usage:
14// Users need to provide the MC and data file in NTuple style. The decays are described as
15// A-> x1 + x2 + x3
16// angular distribution: costheta1, costheta2 ,costheta3
17// mass distribution: m12, m13, and m23, here, m12 ==> mass of x1 and x2, etc.
18// these variables are defined as double type, the tree name is mc and data, repectively
19// Modification history:
20//
21// Ping R.-G. Aug., 2010 Module created
22//
23//------------------------------------------------------------------------
24
25#ifndef EVTMBODY3_HH
26#define EVTMBODY3_HH
29#include "TApplication.h"
30#include "TAxis.h"
31#include "TChain.h"
32#include "TFile.h"
33#include "TH1.h"
34#include "TH2.h"
35#include "TH3.h"
36#include "TROOT.h"
37
38class EvtParticle;
40
41public:
43 virtual ~EvtMBody3();
44
45 void getName( std::string& name );
46
48
49 void initProbMax();
50
51 void init();
52
53 void decay( EvtParticle* p );
54
55 const char* setFileName( int i ); // Defined by user to specify the root file name
56
57private:
58};
59
60#endif
EvtDecayBase * clone()
Definition EvtMBody3.cc:57
void decay(EvtParticle *p)
Definition EvtMBody3.cc:76
const char * setFileName(int i)
Definition UserMBody3.cc:36
void getName(std::string &name)
Definition EvtMBody3.cc:55
virtual ~EvtMBody3()
Definition EvtMBody3.cc:53
void initProbMax()
end of ini
Definition EvtMBody3.cc:74
void init()
Definition EvtMBody3.cc:59