All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Namespaces | Macros
TrackHisto.cc File Reference
#include "TrackHisto.h"
#include "TH1D.h"
#include "TH2D.h"
#include "../NumuReco/TrackAlgo.h"

Go to the source code of this file.

Namespaces

 ana
 Oscillation analysis framework, runs over CAF files outside of ART.
 
 ana::SBNOsc
 

Macros

#define TRACK_HISTO(name, n_bins, lo, hi)   name = new TH1D((#name + postfix).c_str(), #name, n_bins, lo, hi); StoreHisto(name)
 
#define TRACK_2DHISTO(name, binx, lo_x, hi_x, biny, lo_y, hi_y)   name = new TH2D((#name + postfix).c_str(), #name, binx, lo_x, hi_x, biny, lo_y, hi_y); StoreHisto(name)
 

Macro Definition Documentation

#define TRACK_2DHISTO (   name,
  binx,
  lo_x,
  hi_x,
  biny,
  lo_y,
  hi_y 
)    name = new TH2D((#name + postfix).c_str(), #name, binx, lo_x, hi_x, biny, lo_y, hi_y); StoreHisto(name)
#define TRACK_HISTO (   name,
  n_bins,
  lo,
  hi 
)    name = new TH1D((#name + postfix).c_str(), #name, n_bins, lo, hi); StoreHisto(name)