testing/Htautau/SETUP.C
1 {
2  if (!Setup::stage == 0) { //generation step configurables
3  //look at higgs decays
4  Setup::decay_particle=25;
5  Setup::mass_power=1;
6  Setup::mass_scale_on=true;
7 
8  // Setup histograms
9  int n_bins=60;
10  double default_min_bin=0.0;
11  double default_max_bin=1.1;
12  Setup::SetHistogramDefaults(n_bins,default_min_bin,default_max_bin);
13 
14  // Setup User Histograms
15  Setup::UserTreeAnalysis = "RhoRhoPHOTOSUserTreeAnalysis";
16 
17  // Description
18  Setup::gen1_desc_1=" Pythia + Tauola + Photos Interface Test";
19  Setup::gen1_desc_2=" $H \\rightarrow 2 \\pi^0 \\pi^+ \\pi^- \\nu_{\\tau} \\bar{\\nu_{\\tau}} $";
20  Setup::gen1_desc_3=" No photon symmetrization";
21 
22  Setup::SuppressDecay(111); // suppress pi0 decays
23  }
24  else{ //Setup for analysis step
25  Setup::user_analysis=MCTest01;
26  //Setup::rebin_factor=4; // to reduce no of bins by rebin_factor
27  }
28 };
29