49 using namespace KM3NETDAQ;
65 JParser<> zap(
"Monitoring of PMT time-over-threshold distributions.");
67 zap[
'f'] =
make_field(inputFile,
"input file.");
69 zap[
'n'] =
make_field(numberOfEvents) = JLimit::max();
70 zap[
'a'] =
make_field(detectorFile,
"detector file.");
72 zap[
'c'] =
make_field(ctMax,
"maximal cosine space angle between PMT axes.") = 0.0;
74 zap[
'D'] =
make_field(deadTime_us,
"L0 dead time (us)") = 10;
75 zap[
'C'] =
make_field(selector,
"timeslice selector, e.g. JDAQTimesliceL1.") = getROOTClassSelection<JDAQTimesliceTypes_t>();
76 zap[
'O'] =
make_field(option,
"hit pre-processing option.") = JPreprocessor::getOptions();
81 catch(
const exception &error) {
82 FATAL(error.what() << endl);
91 if (!T_ns.is_valid()) {
92 FATAL(
"Invalid time window [ns] " << T_ns << endl);
95 if (selector == JDAQTimeslice ::Class_Name() ||
96 selector == JDAQTimesliceL1::Class_Name()) {
104 FATAL(
"No trigger parameters from input." << endl);
107 if ((selector == JDAQTimeslice ::Class_Name() && parameters.writeL1.prescale > 0) ||
108 (selector == JDAQTimesliceL1::Class_Name())) {
110 if (parameters.TMaxLocal_ns < T_ns.getUpperLimit()) {
111 FATAL(
"Option -T <T_ns> = " << T_ns.getUpperLimit() <<
" is larger than in the trigger " << parameters.TMaxLocal_ns << endl);
116 if (!multiplicity.is_valid()) {
FATAL(
"Invalid multiplicity " << multiplicity << endl); }
117 if ( multiplicity.getLowerLimit() < 1) {
FATAL(
"Invalid multiplicity " << multiplicity << endl); }
133 FATAL(
"Empty detector." << endl);
142 const double zmin = -0.5;
143 const double zmax = 256.5;
144 const int nz = (int) ((zmax-zmin) / 1.0);
154 const double deadTime_ns = deadTime_us * 1e3;
165 for (
counter_type counter = 0;
in.hasNext() && counter != inputFile.getLimit(); ++counter) {
167 STATUS(
"event: " << setw(10) << counter <<
'\r');
DEBUG(endl);
179 for (JDAQTimeslice::const_iterator frame = timeslice->begin(); frame != timeslice->end(); ++frame) {
181 if (router.hasModule(frame->getModuleID())) {
183 TH2D* h2 = manager[frame->getModuleID()];
184 const JModule& module = router.getModule(frame->getModuleID());
186 JSuperFrame2D_t& buffer = JSuperFrame2D_t::demultiplex(*frame, module);
188 buffer.preprocess(option, match);
190 JSuperFrame1D_t& data = JSuperFrame1D_t::multiplex(buffer);
194 for (JSuperFrame1D_t::const_iterator p = data.begin(), __end = data.end() - 1; p != __end; ) {
196 JSuperFrame1D_t::const_iterator q = p;
200 double ct_max = -1.0;
201 double dt_min = numeric_limits<double>::max();
203 while (++q != __end && q->getT() - p->getT() < T_ns.getUpperLimit()) {
206 const double dt = q->getT() - p->getT();
217 if (multiplicity(
distance(p,q)) && ct_max < ctMax && dt_min > T_ns.getLowerLimit()) {
219 for (JSuperFrame1D_t::const_iterator __p = p; __p != q; ++__p) {
221 if (__p->getT() > t0[__p->getPMT()] + deadTime_ns) {
222 h2->Fill(__p->getPMT(), __p->getToT());
225 t0[__p->getPMT()] = __p->getT();
Utility class to parse command line options.
Data structure for a composite optical module.
std::vector< T >::difference_type distance(typename std::vector< T >::const_iterator first, typename PhysicsEvent::const_iterator< T > second)
Specialisation of STL distance.
int getDetectorID() const
Get detector identifier.
double getDot(const JNeutrinoDirection &first, const JNeutrinoDirection &second)
Dot product.
Auxiliary class to select ROOT class based on class name.
Router for direct addressing of module data in detector data structure.
bool putObject(TDirectory *dir, const TObject &object)
Write object to ROOT directory.
*fatal Wrong number of arguments esac JCookie sh typeset Z DETECTOR typeset Z SOURCE_RUN typeset Z TARGET_RUN set_variable PARAMETERS_FILE $WORKDIR parameters
#define MAKE_CSTRING(A)
Make C-string.
Long64_t counter_type
Type definition for counter.
Auxiliary class for multiplexing object iterators.
int getRunNumber() const
Get run number.
1-dimensional frame with time calibrated data from one optical module.
Auxiliary class for defining the range of iterations of objects.
Auxiliary class to manage set of compatible ROOT objects (e.g. histograms) using unique keys...
Reduced data structure for L0 hit.
#define make_field(A,...)
macro to convert parameter to JParserTemplateElement object
const JPMT & getPMT(const int index) const
Get PMT.
void load(const std::string &file_name, JDetector &detector)
Load detector from input file.
General purpose class for object reading from a list of file names.
then usage $script< input_file >< detector_file > fi set_variable OUTPUT_DIR set_variable SELECTOR JDAQTimesliceL1 set_variable DEBUG case set_variable DEBUG
static const char *const _2SToT
Histogram naming.
2-dimensional frame with time calibrated data from one optical module.
const JLimit & getLimit() const
Get limit.
do set_variable DETECTOR_TXT $WORKDIR detector
static const int NUMBER_OF_PMTS
Total number of PMTs in module.
then fatal Wrong number of arguments fi set_variable DETECTOR $argv[1] set_variable INPUT_FILE $argv[2] eval JPrintDetector a $DETECTOR O IDENTIFIER eval JPrintDetector a $DETECTOR O SUMMARY source JAcoustics sh $DETECTOR_ID CHECK_EXIT_CODE typeset A TRIPODS get_tripods $WORKDIR tripod txt TRIPODS for EMITTER in
Auxiliary class for specifying the way of pre-processing of hits.
JTriggerParameters getTriggerParameters(const JMultipleFileScanner_t &file_list)
Get trigger parameters.