39     JParser<> zap(
"Auxiliary program to merge K40 data.");
 
   41     zap[
'f'] = 
make_field(inputFile,         
"input file (output from JCalibrateK40).");
 
   47   catch(
const exception &error) {
 
   48     FATAL(error.what() << endl);
 
   52   gErrorIgnoreLevel = kError;
 
   54   TH1* weights_hist = NULL;
 
   63     DEBUG(
"Processing " << *i << endl) ;
 
   65     TFile 
in(i->c_str(), 
"read");
 
   70       FATAL(
"Histogram does not contain weights histogram." << endl);
 
   75     if (weights_hist == NULL) {
 
   77       weights_hist = (TH1*) weights_hist_i->Clone();
 
   83       TAxis* x_axis = weights_hist->GetXaxis();
 
   85       if (weights_hist_i->GetBinContent(x_axis->FindBin(
WS_t)) != 
 
   86           weights_hist  ->GetBinContent(x_axis->FindBin(
WS_t))) {
 
   87         FATAL(
"Number of y-bins does not match for this file " << *i << endl);
 
   90       if (weights_hist_i->GetBinContent(x_axis->FindBin(
WB_t)) != 
 
   91           weights_hist  ->GetBinContent(x_axis->FindBin(
WB_t))) {
 
   92         FATAL(
"TMax_ns is not the same for this file " << *i << endl);
 
   97       weights_hist->SetBinContent(x_axis->FindBin(
W1_overall_t), 
 
   98                                   weights_hist  ->GetBinContent(x_axis->FindBin(
W1_overall_t)) + 
 
   99                                   weights_hist_i->GetBinContent(x_axis->FindBin(
W1_overall_t)));
 
  103     TIter iter(
in.GetListOfKeys());
 
  105     for (TKey* key; (key = (TKey*) iter.Next()) != NULL; ) {
 
  107       if (TString(key->GetName()).EndsWith(
_2S) ||
 
  108           TString(key->GetName()).EndsWith(
_1B) ||
 
  109           TString(key->GetName()).EndsWith(
_1L)) {
 
  111         TH1* 
h1 = 
dynamic_cast<TH1*
>(key->ReadObj());
 
  113         map_type::iterator p = zmap.find(h1->GetName());
 
  115         if (p == zmap.end()) {
 
  117           DEBUG(
"Clone " << h1->GetName() << endl);
 
  119           p = zmap.insert(make_pair(h1->GetName(), (TH1*) h1->Clone())).first;
 
  123           DEBUG(
"Add   " << h1->GetName() << endl);
 
  130     weights_hist->SetDirectory(0);
 
  132     for (map_type::iterator i = zmap.begin(); i != zmap.end(); ++i) {
 
  133       i->second->SetDirectory(0);
 
  140   if (weights_hist == NULL) {
 
  149   const Double_t WS = weights_hist->GetBinContent(weights_hist->GetXaxis()->FindBin(
WS_t)) ;  
 
  150   const Double_t WB = weights_hist->GetBinContent(weights_hist->GetXaxis()->FindBin(
WB_t)) ;  
 
  152   for (map_type::iterator i = zmap.begin(); i != zmap.end(); ++i) {
 
  154     if (i->first.EndsWith(
_2S)) {
 
  156       TH2D* h2s = (TH2D*) i->second;
 
  158       if (h2s->GetEntries() != 0) {
 
  160         TH1D* h1b = (TH1D*) zmap.find(TString(i->first).ReplaceAll(
_2S, 
_1B))->second;
 
  161         TH1D* h1L = (TH1D*) zmap.find(TString(i->first).ReplaceAll(
_2S, 
_1L))->second;
 
  167         for (
int ix = 1; ix <= h2s->GetXaxis()->GetNbins(); ++ix) {
 
  172           if (h1L->GetBinContent(ix) == 0.0) {
 
  174             h1b->SetBinContent(ix, 0.0);
 
  175             h1b->SetBinError  (ix, 0.0);
 
  177             for (
int iy = 1; iy <= h2s->GetYaxis()->GetNbins(); ++iy) {
 
  178               h2s->SetBinContent(ix, iy,   0.0);
 
  179               h2s->SetBinError  (ix, iy, 999.999);
 
  184             const double Y = h1b->GetBinContent(ix) / h1L->GetBinContent(ix) / WB;
 
  185             const double W = h1b->GetBinError  (ix) / h1L->GetBinContent(ix) / WB;
 
  187             h1b->SetBinContent(ix, Y);
 
  188             h1b->SetBinError  (ix, W);
 
  190             for (
int iy = 1; iy <= h2s->GetYaxis()->GetNbins(); ++iy) {
 
  192               double y = h2s->GetBinContent(ix, iy) / h1L->GetBinContent(ix) / WS;
 
  193               double w = h2s->GetBinError  (ix, iy) / h1L->GetBinContent(ix) / WS;
 
  199                 w = 1.0 / h1L->GetBinContent(ix) / WS;
 
  202               h2s->SetBinContent(ix, iy, y - Y);
 
  203               h2s->SetBinError  (ix, iy, TMath::Sqrt(w*w + W*W));
 
  210         for (
int ix = 0; ix <= h2s->GetXaxis()->GetNbins() + 1; ++ix) {
 
  211           h2s->SetBinContent(ix, 0, 0.0);  h2s->SetBinContent(ix, h2s->GetYaxis()->GetNbins() + 1, 0.0);
 
  212           h2s->SetBinError  (ix, 0, 0.0);  h2s->SetBinError  (ix, h2s->GetYaxis()->GetNbins() + 1, 0.0);
 
  215         for (
int iy = 0; iy <= h2s->GetYaxis()->GetNbins() + 1; ++iy) {
 
  216           h2s->SetBinContent(0, iy, 0.0);  h2s->SetBinContent(h2s->GetXaxis()->GetNbins() + 1, iy, 0.0);
 
  217           h2s->SetBinError  (0, iy, 0.0);  h2s->SetBinError  (h2s->GetXaxis()->GetNbins() + 1, iy, 0.0);
 
  220         NOTICE(
"Biased coincidence rate [Hz] " << h2s->GetName() << 
' ' << h2s->GetSumOfWeights() * WS << endl);
 
  222         h2s->SetName(TString(i->first).ReplaceAll(
_2S, 
_2R));
 
Utility class to parse command line options. 
 
static const char *const WB_t
Named bin for value of TMax_ns in JCalibrateK40. 
 
bool putObject(TDirectory *dir, const TObject &object)
Write object to ROOT directory. 
 
then for HISTOGRAM in h0 h1
 
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 char *const WS_t
Named bin for time residual bin width. 
 
#define make_field(A,...)
macro to convert parameter to JParserTemplateElement object 
 
static const char *const _1B
Name extension for 1D background. 
 
static const char *const _2R
Name extension for 2D rate measured. 
 
static const char *const weights_hist_t
Histogram naming. 
 
static const char *const _1L
Name extension for 1D live time. 
 
static const char *const W1_overall_t
Named bin for duration of the run. 
 
then usage $script< input_file >< detector_file > fi set_variable OUTPUT_DIR set_variable SELECTOR JDAQTimesliceL1 set_variable DEBUG case set_variable DEBUG
 
void copy(const Head &from, JHead &to)
Copy header from from to to. 
 
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
 
static const char *const _2S
Name extension for 2D counts. 
 
do if[[!-f $ACOUSTICS_WORKDIR/${KEY}.txt]]