18 const int pLeptonIsUsed = 1;
19 const int thetaIsUsed = 1;
20 const int varPhiKqIsUsed = 1;
21 const double pi = TMath::Pi();
31 double phikqmin, phikqmax, FRAC;
36 printf(
"Please enter phi_kq as a fraction of pi: ");
38 printf(
"Phi_kq set to fixed value %.2lf*pi...\n", FRAC);
44 if (type==1) Mlep = 0.510998928e-3;
45 else if (type==2) Mlep = 0.1056583715;
46 else if (type==3) Mlep = 1.77682;
47 else {
std::cout<<
"ERROR: Invalid type!"<<std::endl;
return;}
50 if (reac==1) Mkaon = 0.493677;
51 else if (reac==2) Mkaon = 0.497614;
52 else if (reac==3) Mkaon = 0.493677;
53 else {
std::cout<<
"ERROR: Invalid reaction!"<<std::endl;
return;}
57 inst->
init(Enu, type, reac);
61 int Esteps = (int)(20.0*(Emax-Emin));
65 const int nsteps2 = 10*COMP, nsteps1 = 10*COMP, nsteps3 = 10*COMP;
66 double varmin1, varmin2, varmin3, varmax1, varmax2, varmax3,
temp;
67 double binsvar2[nsteps2+1], binsvar1[nsteps1+1], binsvar3[nsteps3+1];
68 double varvals2[nsteps2], varvals1[nsteps1], varvals3[nsteps3];
81 std::cout <<
" E [GeV]\txsec [cm^2]" << std::endl;
82 std::cout <<
"-----------------------------" << std::endl;
86 if (varPhiKqIsUsed) fname =
"d3sigma_phi=var.out";
87 else fname = Form(
"d3sigma_phi=%.2lfpi.out",FRAC);
88 FILE *outfile = fopen((fpath+fname).c_str(),
"w");
89 fprintf(outfile,
"# E [GeV]\txsec [cm^2]\n");
90 fprintf(outfile,
"#-----------------------------\n");
92 for (itenu=0; itenu<=Esteps; itenu++) {
95 Enu = Emin + itenu*0.05;
96 inst->
init(Enu, type, reac);
99 phikq = phikqmin + (double)itenu/Esteps*(phikqmax-phikqmin);
102 varmin1 = 0.; varmax1 = Enu-Mkaon-Mlep;
113 for (i=0; i<=nsteps1; i++) {
114 binsvar1[
i] = varmin1 + i*(varmax1-varmin1)/nsteps1;
117 for (k=0; k<=nsteps3; k++) {
119 temp = varmax3 - k*(varmax3-varmin3)/nsteps3;
120 binsvar3[
k] = cos(temp);
122 binsvar3[
k] = varmin3 + k*(varmax3-varmin3)/nsteps3;
124 if (verbose && !itenu && k)
125 std::cout <<
"Bin #" << k <<
" has cos(theta) = " << 0.5*(binsvar3[
k]+binsvar3[k-1])
126 <<
",\t width = " << binsvar3[k]-binsvar3[k-1] << std::endl;
130 for (i=0; i<nsteps1; i++) varvals1[i] = 0.5*(binsvar1[i+1]+binsvar1[i]);
132 for (k=0; k<nsteps3; k++) varvals3[k] = 0.5*(binsvar3[k+1]+binsvar3[k]);
139 for (i=0; i<nsteps1; i++) {
140 if (binsvar1[i+1]==binsvar1[i])
continue;
149 varmax2 = sqrt((Enu-Ekaon)*(Enu-Ekaon)-Mlep*Mlep);
152 varmax2 = Enu-Ekaon-Mlep;
154 for (j=0; j<=nsteps2; j++) {
155 temp = varmin2 + j*(varmax2-varmin2)/nsteps2;
157 binsvar2[j] = sqrt(temp*temp+Mlep*Mlep)-Mlep;
161 if (verbose && !pLeptonIsUsed && !itenu && j)
162 std::cout <<
"Bin edge #" << j <<
" has Tlep = " << binsvar2[j]
163 <<
",\t width = " << binsvar2[j]-binsvar2[j-1] << std::endl;
165 for (j=0; j<nsteps2; j++) varvals2[j] = 0.5*(binsvar2[j+1]+binsvar2[j]);
173 for (j=0; j<nsteps2; j++) {
174 if (binsvar2[j+1]==binsvar2[j])
continue;
183 for (k=0; k<nsteps3; k++) {
184 if (binsvar3[k+1]==binsvar3[k])
continue;
185 theta = acos(varvals3[k]);
188 diff3sigma = inst->
diffxsec(Tlep,Tkaon,theta,phikq);
189 diff3sigma *=
pow(2*pi,2);
194 diff2sigma += diff3sigma*(binsvar3[k+1]-binsvar3[
k]);
198 diff2sigma *= Elep/sqrt(Elep*Elep-Mlep*Mlep);
200 diff1sigma += diff2sigma*(binsvar2[j+1]-binsvar2[j]);
203 sigma += diff1sigma*(binsvar1[i+1]-binsvar1[
i]);
207 std::cout << Form(
"%12.6lf",Enu) <<
"\t" << sigma << std::endl;
208 fprintf(outfile,
"%lf\t%e\n",Enu,sigma);
212 std::cout << std::endl <<
"Output written to file: " << fpath << fname << std::endl << std::endl;
art art Framework Principal Run temp
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
double diffxsec(double Tlep, double Tkaon, double theta, double phikq)
these are called *plugin *libraries Plugin libraries are loaded by the *LibraryManager *see above The source file in which a module is implemented must be named< module > _plugin cc It must contain an invocation of the *DEFINE_EDM_PLUGIN *macro The *DEFINE_EDM_PLUGIN *macro is responsible for writing the appropriate *factory **function and that takes a const reference to a *ParameterSet *and that returns a newly created instance of the associated module type
void init(double Etot, int type, int reac)