testing/ScalNLO/SETUP.C
1{
2 if(!Setup::stage == 0) { //generation step configurables
3
4 Setup::decay_particle=310;
5 Setup::debug_mode=false; //verbose output from MC-Tester?
6 // Setup histograms
7 int n_bins=120;
8 double default_min_bin=0.0;
9 double default_max_bin=1.1;
10 Setup::SetHistogramDefaults(n_bins,default_min_bin,default_max_bin);
11
12 Setup::mass_scale_on=true;
13 Setup::mass_power=2;
14
15 // Description
16 Setup::gen1_desc_1=" Pythia + Tauola + Photos Interface Test";
17 Setup::gen1_desc_2=" scalar to 2 scalars. Photons filtered below 10 MeV";
18 Setup::gen1_desc_3=" No photon symmetrization";
19
20 //Filter photons
21 // Setup::UserTreeAnalysis = "ZtautauAnalysis";
22 Setup::UserTreeAnalysis = "UserTreeAnalysis";
23 Setup::UTA_params[0]=0.01/0.49; //10 MeV
24 // p_t threshold as fraction of particle energy in
25 // mothers frame
26 Setup::UTA_params[1]=2;
27 Setup::UTA_params[2]=0.0;
28 Setup::UTA_params[3]=1.0;
29 Setup::UTA_params[4]=22;
30
31 Setup::UTA_nparams=5;
32
33 Setup::SuppressDecay(22);
34 Setup::SuppressDecay(23);
35 Setup::SuppressDecay(-15);
36 //Setup::SuppressDecay(11);
37 //Setup::SuppressDecay(-11);
38 }
39 else //Setup for analysis step
40 {
41 Setup::user_analysis=MCTest01;
42 Setup::use_log_y=true;
43 }
44};