Functions | Variables
nuint09_qel3.C File Reference
#include <iomanip>

Go to the source code of this file.

Functions

void nuint09_qel3 (int isample)
 

Variables

const int kNSamples = 3
 
const int kNWCur = 1
 
const int kNEnergies = 2
 
const int kNRunsPerCase = 5
 
const int kNEvtPerRun = 100000
 
const char * kLabel [kNSamples]
 
const int kRunNu [kNSamples][kNWCur][kNEnergies][kNRunsPerCase]
 
int kZ [3]
 
int kA [3]
 

Function Documentation

void nuint09_qel3 ( int  isample)

Definition at line 61 of file nuint09_qel3.C.

62 {
63  cout << " ***** running: QEL.3" << endl;
64 
65  if(isample<0 || isample >= kNSamples) return;
66 
67  const char * label = kLabel[isample];
68 
69  int A = kA[isample];
70  int Z = kZ[isample];
71  int N = A-Z;
72 
73  // get cross section graphs
74 
75  TFile fsig("../sig/splines.root","read");
76  TDirectory * sig_dir = (TDirectory *) fsig.Get(label);
77 
78  TGraph * sig_graph_qelcc = (TGraph*) sig_dir->Get("qel_cc_n");
79 
80  // range & spacing
81 
82  const int nKEmu = 60;
83  const double KEmumin = 0.01;
84  const double KEmumax = 1.50;
85 
86  // create output stream
87 
88  ostringstream out_filename;
89  out_filename << label << ".qel_3.dsig_dKEmu.data";
90  ofstream out_stream(out_filename.str().c_str(), ios::out);
91 
92  // write out txt file
93 
94  out_stream << "# [" << label << "]" << endl;
95  out_stream << "# " << endl;
96  out_stream << "# [QEL.3]:" << endl;
97  out_stream << "# cross section as a function of muon kinetic energy at E_nu= 0.5, 1.0 GeV." << endl;
98  out_stream << "# " << endl;
99  out_stream << "# Note:" << endl;
100  out_stream << "# - muon energies are _kinetic_ energies " << endl;
101  out_stream << "# - muon kinetic energy KE in GeV, between KEmin = " << KEmumin << " GeV, KEmax = " << KEmumax << " GeV " << endl;
102  out_stream << "# - cross sections in 1E-38 cm^2 / GeV" << endl;
103  out_stream << "# - quoted cross section is nuclear cross section per nucleon contributing in the scattering (eg only neutrons for nu_mu QELCC)" << endl;
104  out_stream << "# Columns:" << endl;
105  out_stream << "# | KE(mu) | sig(QELCC; Ev=0.5GeV) | sig(QELCC; Ev=1.0GeV) | " << endl;
106 
107  out_stream << std::fixed << setprecision(6);
108 
109  //
110  // load event data
111  //
112 
113  TChain * chain = new TChain("gst");
114 
115  // loop over CC/NC cases
116  for(int iwkcur=0; iwkcur<kNWCur; iwkcur++) {
117  // loop over energies
118  for(int ie=0; ie<kNEnergies; ie++) {
119  // loop over runs for current case
120  for(int ir=0; ir<kNRunsPerCase; ir++) {
121  // build filename
122  ostringstream filename;
123  int run_number = kRunNu[isample][iwkcur][ie][ir];
124  filename << "../gst/gntp." << run_number << ".gst.root";
125  // add to chain
126  cout << "Adding " << filename.str() << " to event chain" << endl;
127  chain->Add(filename.str().c_str());
128  }
129  }
130  }
131 
132 
133  //
134  // get QELCC cross sections at given energies for normalization purposes
135  //
136  double sig_qelcc_0500MeV = sig_graph_qelcc->Eval(0.5) / N;
137  double sig_qelcc_1000MeV = sig_graph_qelcc->Eval(1.0) / N;
138 
139  //
140  // book histograms
141  //
142  TH1D * hst_dsig_dKEmu_qelcc_0500MeV = new TH1D("hst_dsig_dKEmu_qelcc_0500MeV","dsig/dKEmu, nu_mu QEL CC, Enu=0.5 GeV", nKEmu, KEmumin, KEmumax);
143  TH1D * hst_dsig_dKEmu_qelcc_1000MeV = new TH1D("hst_dsig_dKEmu_qelcc_1000MeV","dsig/dKEmu, nu_mu QEL CC, Enu=1.0 GeV", nKEmu, KEmumin, KEmumax);
144 
145  //
146  // fill histograms
147  //
148  chain->Draw("(El-0.1056584)>>hst_dsig_dKEmu_qelcc_0500MeV","qel&&cc&&Ev>0.49&&Ev<0.51","GOFF");
149  chain->Draw("(El-0.1056584)>>hst_dsig_dKEmu_qelcc_1000MeV","qel&&cc&&Ev>0.99&&Ev<1.01","GOFF");
150 
151  //
152  // normalize
153  //
154  double norm_qelcc_0500MeV = hst_dsig_dKEmu_qelcc_0500MeV -> Integral("width") / sig_qelcc_0500MeV;
155  double norm_qelcc_1000MeV = hst_dsig_dKEmu_qelcc_1000MeV -> Integral("width") / sig_qelcc_1000MeV;
156 
157  if (norm_qelcc_0500MeV > 0) hst_dsig_dKEmu_qelcc_0500MeV -> Scale(1./norm_qelcc_0500MeV);
158  if (norm_qelcc_1000MeV > 0) hst_dsig_dKEmu_qelcc_1000MeV -> Scale(1./norm_qelcc_1000MeV);
159 
160  for(int i = 1; i <= hst_dsig_dKEmu_qelcc_1000MeV->GetNbinsX(); i++) {
161 
162  double KEp = hst_dsig_dKEmu_qelcc_1000MeV->GetBinCenter(i);
163 
164  double dsig_dKEmu_qelcc_0500MeV = hst_dsig_dKEmu_qelcc_0500MeV -> GetBinContent(i);
165  double dsig_dKEmu_qelcc_1000MeV = hst_dsig_dKEmu_qelcc_1000MeV -> GetBinContent(i);
166 
167  dsig_dKEmu_qelcc_0500MeV = TMath::Max(0., dsig_dKEmu_qelcc_0500MeV);
168  dsig_dKEmu_qelcc_1000MeV = TMath::Max(0., dsig_dKEmu_qelcc_1000MeV);
169 
170  out_stream << setw(15) << KEp
171  << setw(15) << dsig_dKEmu_qelcc_0500MeV
172  << setw(15) << dsig_dKEmu_qelcc_1000MeV
173  << endl;
174  }
175 
176  out_stream.close();
177 
178  delete chain;
179 }
size_t i(0)
const int kNEnergies
Definition: nuint09_qel3.C:19
const int kRunNu[kNSamples][kNWCur][kNEnergies][kNRunsPerCase]
Definition: nuint09_qel3.C:30
int kZ[3]
Definition: nuint09_qel3.C:46
const int kNWCur
Definition: nuint09_qel3.C:18
the ParameterSet object passed in for the configuration of a destination should be the only source that can affect the behavior of that destination This is to eliminate the dependencies of configuring a destination from multiple mostly from the defaults It suppresses possible glitches about changing the configuration file somewhere outside of a destination segament might still affect the behavior of that destination In the previous configuration for a specific the value of a certain e may come from following and have been suppressed It the configuring ParameterSet object for each destination will be required to carry a parameter list as complete as possible If a parameter still cannot be found in the ParameterSet the configuration code will go look for a hardwired default directly The model is a great simplicity comparing with the previous especially when looking for default values Another great advantage is most of the parameters now have very limited places that allows to appear Usually they can only appear at one certain level in a configuration file For in the old configuring model or in a default ParameterSet object inside of a or in a category or in a severity object This layout of multiple sources for a single parameter brings great confusion in both writing a configuration and in processing the configuration file Under the new the only allowed place for the parameter limit to appear is inside of a category which is inside of a destination object Other improvements simplify the meaning of a destination name In the old a destination name has multiple folds of meanings the e cout and cerr have the special meaning of logging messages to standard output or standard error the name also serves as the output filename if the destination is a file these names are also references to look up for detailed configurations in configuring the MessageFacility The multi purpose of the destination name might cause some unwanted behavior in either writing or parsing the configuration file To amend in the new model the destination name is now merely a name for a which might represent the literal purpose of this or just an id All other meanings of the destinations names now go into the destination ParameterSet as individual such as the type parameter and filename parameter Following is the deatiled rule for the new configuring Everything that is related with MessageFacility configuration must be wrapped in a single ParameterSet object with the name MessageFacility The MessageFacility ParameterSet object contains a series of top level parameters These parameters can be chosen a vector of string listing the name of debug enabled models Or use *to enable debug messages in all modules a vector of string a vector of string a vector of string a ParameterSet object containing the list of all destinations The destinations ParameterSet object is a combination of ParameterSet objects for individual destinations There are two types of destinations that you can insert in the destinations ParameterSet ordinary including cout
const char * kLabel[kNSamples]
Definition: nuint09_qel3.C:23
const int kNRunsPerCase
Definition: nuint09_qel3.C:20
const int kNSamples
Definition: nuint09_qel3.C:17
var ie
Definition: slidy.js:14
int kA[3]
Definition: nuint09_qel3.C:53

Variable Documentation

int kA[3]
Initial value:
=
{
12,
16,
56
}

Definition at line 53 of file nuint09_qel3.C.

const char* kLabel[kNSamples]
Initial value:
=
{
"nu_mu_C12",
"nu_mu_O16",
"nu_mu_Fe56"
}

Definition at line 23 of file nuint09_qel3.C.

const int kNEnergies = 2

Definition at line 19 of file nuint09_qel3.C.

const int kNEvtPerRun = 100000

Definition at line 21 of file nuint09_qel3.C.

const int kNRunsPerCase = 5

Definition at line 20 of file nuint09_qel3.C.

const int kNSamples = 3

Definition at line 17 of file nuint09_qel3.C.

const int kNWCur = 1

Definition at line 18 of file nuint09_qel3.C.

Initial value:
=
{
{
{ {200100, 200101, 200102, 200103, 200104},
{200200, 200201, 200202, 200203, 200204} }
},
{
{ {210100, 210101, 210102, 210103, 210104},
{210200, 210201, 210202, 210203, 210204} }
},
{
{ {220100, 220101, 220102, 220103, 220104},
{220200, 220201, 220202, 220203, 220204} }
}
}

Definition at line 30 of file nuint09_qel3.C.

int kZ[3]
Initial value:
=
{
6,
8,
26
}

Definition at line 46 of file nuint09_qel3.C.