30int main(
int argc,
char **argv)
59 JParser<> zap(
"Auxiliary program to draw PDF of Cherenkov light from EM-shower including shower profile.");
62 <<
"possible options absorptionLength: " << get_keys(absorptionLength) << endl
63 <<
"possible options scatteringLength: " << get_keys(scatteringLength) << endl
64 <<
"possible options scatteringProbability: " << get_keys(scatteringProbability) << endl) =
JPARSER::initialised();
67 zap[
'e'] =
make_field(epsilon,
"precision for integration") = 1.0e-10;
68 zap[
'E'] =
make_field(E,
"shower energy [GeV]");
70 zap[
'c'] =
make_field(cd,
"cosine emission angle");
71 zap[
'D'] =
make_field(dir,
"(theta, phi) of PMT [rad]");
78 catch(
const exception &error) {
79 FATAL(error.what() << endl);
84 pdf(NAMESPACE::getPhotocathodeArea(),
86 NAMESPACE::getAngularAcceptance,
87 JAbsorptionLength::getAbsorptionLength,
88 JScatteringLength::getScatteringLength,
89 JScatteringProbability::getScatteringProbability,
90 NAMESPACE::getAmbientPressure(),
91 getMinimalWavelength(),
92 getMaximalWavelength(),
99 cout <<
"enter time (^C to exit) > " << flush;
101 for (
double dt; cin >> dt; ) {
103 for (vector<int>::const_iterator F = function.begin(); F != function.end(); ++F) {
105 cout << setw(2) << *F <<
' '
107 <<
FIXED(5,1) << D <<
' '
108 <<
FIXED(5,2) << cd <<
' '
111 <<
FIXED(5,1) << dt <<
' '
123 const double t0 = 0.0;
127 if (function.size() == 1 && function[0] == DIRECT_LIGHT_FROM_EMSHOWER) {
145 for (
int i = 1; i <= h0.GetNbinsX(); ++i) {
147 const double dt = h0.GetBinCenter(i) - t0;
151 for (vector<int>::const_iterator F = function.begin(); F != function.end(); ++F) {
155 h0.SetBinContent(i, value);
171 catch(
const exception&) {}
Properties of Antares PMT and deep-sea water.
int main(int argc, char **argv)
General purpose messaging.
#define DEBUG(A)
Message macros.
Utility class to parse command line options.
#define make_field(A,...)
macro to convert parameter to JParserTemplateElement object
I/O formatting auxiliaries.
Utility class to parse parameter values.
#define gmake_property(A)
macros to convert (template) parameter to JPropertiesElement object
Properties of KM3NeT PMT and deep-sea water.
Utility class to parse parameter values.
Data structure for angles in three dimensions.
double getTheta() const
Get theta angle.
double getPhi() const
Get phi angle.
Utility class to parse command line options.
Probability Density Functions of the time response of a PMT with an implementation of the JAbstractPM...
double getLightFromEMshower(const int type, const double D_m, const double cd, const double theta, const double phi, const double t_ns) const
Probability density function for light from EM-shower.
This name space includes all other name spaces (except KM3NETDAQ, KM3NET and ANTARES).
Auxiliary data structure for floating point format specification.
Empty structure for specification of parser element that is initialised (i.e. does not require input)...
Auxiliary data structure to customize absorption length.
Auxiliary data structure to customize scattering length.
Auxiliary data structure to customize scattering probability.
Auxiliary data structure for floating point format specification.