StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
gammagammaleptonpair.h
1 //
3 // Copyright 2010
4 //
5 // This file is part of starlight.
6 //
7 // starlight is free software: you can redistribute it and/or modify
8 // it under the terms of the GNU General Public License as published by
9 // the Free Software Foundation, either version 3 of the License, or
10 // (at your option) any later version.
11 //
12 // starlight is distributed in the hope that it will be useful,
13 // but WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 // GNU General Public License for more details.
16 //
17 // You should have received a copy of the GNU General Public License
18 // along with starlight. If not, see <http://www.gnu.org/licenses/>.
19 //
21 //
22 // File and Version Information:
23 // $Rev:: $: revision of last commit
24 // $Author: jwebb $: author of last commit
25 // $Date: 2016/05/05 22:45:11 $: date of last commit
26 //
27 // Description:
28 //
29 //
30 //
32 
33 
34 #ifndef GAMMAGAMMALEPTONPAIR_H
35 #define GAMMAGAMMALEPTONPAIR_H
36 
37 #include <vector>
38 
39 #include "starlightconstants.h"
40 #include "readinluminosity.h"
41 #include "starlightlimits.h"
42 #include "eventchannel.h"
43 
44 
46 {
47  public:
50 
51  void twoLeptonCrossSection();
52  void calculateTable();
53 
54  starlightConstants::event produceEvent(int &ievent);
55  upcEvent produceEvent();
56 
57  private:
58  double _sigmax[starlightLimits::MAXWBINS][starlightLimits::MAXYBINS];//=new double[500][500]; //decreased from 1000*1000; too big! causes fault!
59  double _sigmaSum;
60  double _sigfint[starlightLimits::MAXWBINS];
61  double _sigofw[starlightLimits::MAXWBINS];
62  double _signormw;
63  double _wdelta; //Added 7/26/07 for passing sigmadelta to pickw
64  double _remainwd;// "
65  int _ivalwd; // "
66  double _dgammade[1000];
67  double _tautolangle[101];
68 
69  double twoMuonCrossSection(double w);
70  void pickw(double &w);
71  void picky(double &y);
72 
73  void pairMomentum(double w,double y,double &E,double &px,double &py,double&pz);
74  double pp(double E);
75  void twoBodyDecay(starlightConstants::particleTypeEnum &ipid,double E,double W,double px0,double py0,double pz0,double &px1,double &py1,double&pz1,double &px2,double &py2,/*double &py2,*/double &pz2,int &iFbadevent);
76  double thetalep(double W,double theta);
77  void tauDecay(double &px1,double &py1,double &pz1,double &E1,double &px2,double &py2,double &pz2,double &E2);
78 
79  double getMass();
80  double getWidth();
81  double getSpin();
82 
83  starlightConstants::particleTypeEnum _GGlepInputpidtest;
84  int _GGlepInputnumw;
85  int _GGlepInputnumy;
86  double _GGlepInputGamma_em;
87 };
88 
89 
90 #endif // GAMMAGAMMALEPTONPAIR_H