33 typedef JRange<double> JRange_t;
44 JParser<> zap(
"Auxiliary program to print the ranges of x, y, z and c values of 3D ROOT objects.");
46 zap[
'f'] =
make_field(inputFile,
"<input file>:<object name>");
48 zap[
'y'] =
make_field(y,
"y range") = JRange_t();
49 zap[
'z'] =
make_field(z,
"z range") = JRange_t();
55 catch(
const exception &error) {
56 FATAL(error.what() << endl);
60 JRange_t
X = JRange_t::DEFAULT_RANGE;
61 JRange_t
Y = JRange_t::DEFAULT_RANGE;
62 JRange_t
Z = JRange_t::DEFAULT_RANGE;
63 JRange_t
C = JRange_t::DEFAULT_RANGE;
67 DEBUG(
"Input: " << *input << endl);
72 ERROR(
"File: " << input->getFullFilename() <<
" not opened." << endl);
76 const TRegexp regexp(input->getObjectName());
78 TIter iter(dir->GetListOfKeys());
80 for (TKey* key; (key = (TKey*) iter.Next()) != NULL; ) {
82 const TString tag(key->GetName());
84 DEBUG(
"Key: " << tag <<
" match = " << tag.Contains(regexp) << endl);
88 if (tag.Contains(regexp) &&
isTObject(key)) {
90 TObject*
object = key->ReadObj();
94 TH3& h3 =
dynamic_cast<TH3&
>(*object);
96 X.combine(
x.join(JRange_t(h3.GetXaxis()->GetXmin(), h3.GetXaxis()->GetXmax())));
97 Y.combine(y.join(JRange_t(h3.GetYaxis()->GetXmin(), h3.GetYaxis()->GetXmax())));
98 Z.combine(z.join(JRange_t(h3.GetZaxis()->GetXmin(), h3.GetZaxis()->GetXmax())));
99 C.combine(
c.join(JRange_t(h3.GetMinimum(), h3.GetMaximum())));
107 cout <<
SCIENTIFIC(15,5) <<
X.getLowerLimit() <<
' '
Utility class to parse command line options.
then fatal Wrong number of arguments fi set_variable STRING $argv[1] set_variable DETECTORXY_TXT $WORKDIR $DETECTORXY_TXT tail read X Y CHI2 RMS printf optimum n $X $Y $CHI2 $RMS awk v Y
static const double C
Physics constants.
#define make_field(A,...)
macro to convert parameter to JParserTemplateElement object
then break fi done getCenter read X Y Z let X
then usage $script< input_file >< detector_file > fi set_variable OUTPUT_DIR set_variable SELECTOR JDAQTimesliceL1 set_variable DEBUG case set_variable DEBUG
bool isTObject(const TKey *key)
Check if given key corresponds to a TObject.
TDirectory * getDirectory(const JRootObjectID &id)
Get TDirectory pointer.
do set_variable MODULE getModule a $WORKDIR detector_a datx L $STRING JEditDetector a $WORKDIR detector_a datx M $MODULE setz o $WORKDIR detector_a datx JEditDetector a $WORKDIR detector_b datx M $MODULE setz o $WORKDIR detector_b datx done echo Output stored at $WORKDIR detector_a datx and $WORKDIR tripod_a txt JDrawDetector2D a $WORKDIR detector_a datx a $WORKDIR detector_b datx L BL o detector $FORMAT $BATCH JDrawDetector2D T $WORKDIR tripod_a txt T $WORKDIR tripod_b txt L BL o tripod $FORMAT $BATCH JCompareDetector a $WORKDIR detector_a datx b $WORKDIR detector_b datx o $WORKDIR abc root &dev null for KEY in X Y Z
$WORKDIR ev_configure_domsimulator txt echo process $DOM_SIMULATOR $i $SOURCE_HOST[$index] csh c(setenv ROOTSYS $ROOTSYS &&source $JPP_DIR/setenv.csh $JPP_DIR &&($DOM_SIMULATOR\-u\$NAME\$\-H\$SERVER\$\-M\$LOGGER\$\-d $DEBUG</dev/null > &/dev/null &))'
Auxiliary data structure for floating point format specification.