EvtNT3 Class Reference

#include <EvtNT3.hh>

Inheritance diagram for EvtNT3:

EvtHis2F List of all members.

Public Member Functions

void init ()
int calculateBins (int entries)
bool AR1 (double costheta, double mass)
bool AR2 (double costheta, double mass)
bool AR3 (double costheta, double mass)
void setDTfile (const char *name)
void setMCfile (const char *name)
void init (TH2F *hmc, TH2F *hdt, TH2F *hwt)
void setFile (const char *dtfile)
void setHTitle (const char *htitle)
const char * getFile ()
const char * getHTitle ()
void HFill (double xmass2, double ymass2)
double getZvalue (double m12_square, double m13_square)
void HReweight ()
bool AR (double xmass2, double ymass2)
bool AR (double xmass2, double ymass2, double zmax, TH2F *h2)
void setZmax ()
void setZmax (TH2F *H2)
double getZmax ()
void setHmc (TH2F *H2)
void setHdt (TH2F *H2)
void setHwt (TH2F *H2)
TH2F * getHmc ()
TH2F * getHdt ()
TH2F * getHwt ()
void setBINSx (int bx)
void setBINSy (int by)
void setXlow (double xl)
void setXup (double xu)
void setYlow (double yl)
void setYup (double yu)
void setBins (TH2F *h2)
int getBINSx ()
int getBINSy ()
double getXlow ()
double getYlow ()
double getXup ()
double getYup ()
void show (TH2F *h2)
void showFrame (TH2F *h2)

Private Attributes

TChain * chainMC
TChain * chainDT
TFile * dataf
TFile * mcf
const char * datafile
const char * mcfile
TH2F * MC1
TH2F * MC2
TH2F * MC3
TH2F * DT1
TH2F * DT2
TH2F * DT3
TH2F * WT1
TH2F * WT2
TH2F * WT3
double max1
double max2
double max3
double max
double costheta1
double costheta2
double costheta3
double m12
double m13
double m23
double m12_low
double m12_up
double m13_low
double m13_up
double m23_low
double m23_up
int entriesMC
int entriesDT
int Ncos
int Nmass

Detailed Description

Definition at line 25 of file EvtNT3.hh.


Member Function Documentation

bool EvtHis2F::AR ( double  xmass2,
double  ymass2,
double  zmax,
TH2F *  h2 
) [inherited]

Definition at line 218 of file EvtHis2F.cc.

References EvtRandom::Flat(), EvtHis2F::setBins(), EvtHis2F::xup, and EvtHis2F::yup.

00218                                                                     {//accept: true. reject: false
00219   //call this function after initiation and filling MC histogram HMC
00220   bool accept;
00221   accept=false;
00222   setBins(h2);
00223   if(xmass2<xlow || xmass2>xup || ymass2<ylow || ymass2>yup) {return accept;}
00224   int xbin = h2->GetXaxis()->FindBin(xmass2);
00225   int ybin = h2->GetYaxis()->FindBin(ymass2);
00226   int xybin= h2->GetBin(xbin,ybin);
00227   double zvalue=h2->GetBinContent(xybin);
00228 
00229   double ratio=zvalue/zmax;
00230   double rndm=EvtRandom::Flat(0.0, 1.0);  
00231   //  std::cout<<"zvalue, zmax , rndm "<<zvalue<<" "<<zmax<<" "<<rndm<<std::endl;
00232   if(ratio > rndm){accept=true;} else {accept=false;}
00233   return accept;
00234 }

bool EvtHis2F::AR ( double  xmass2,
double  ymass2 
) [inherited]

Definition at line 205 of file EvtHis2F.cc.

References EvtRandom::Flat(), EvtHis2F::getZvalue(), EvtHis2F::xup, EvtHis2F::yup, and EvtHis2F::zmax.

Referenced by AR1(), AR2(), AR3(), and EvtDecay::SuperBody3decay_judge().

00205                                              {//accept: true. reject: false
00206   //call this function after initiation and filling MC histogram HMC
00207   bool accept;
00208   accept=false;
00209   if(xmass2<xlow || xmass2>xup || ymass2<ylow || ymass2>yup) {return accept;}
00210   double zvalue=getZvalue(xmass2,ymass2);
00211   double ratio=zvalue/zmax;
00212   double rndm=EvtRandom::Flat(0.0, 1.0);  
00213   //  std::cout<<"zvalue, zmax , rndm "<<zvalue<<" "<<zmax<<" "<<rndm<<std::endl;
00214   if(ratio > rndm){accept=true;} else {accept=false;}
00215   return accept;
00216 }

bool EvtNT3::AR1 ( double  costheta,
double  mass 
)

Definition at line 142 of file EvtNT3.cc.

References EvtHis2F::AR(), max1, and WT1.

Referenced by EvtMBody3::decay().

00142                                             {
00143   bool accept=false;
00144   accept= EvtHis2F::AR(costheta,mass,max1,WT1);
00145   //--- debugging
00146   //  std::cout<<"Max_mass= "<<getZmax()<<std::endl;
00147 
00148   return accept;
00149 }

bool EvtNT3::AR2 ( double  costheta,
double  mass 
)

Definition at line 151 of file EvtNT3.cc.

References EvtHis2F::AR(), max2, and WT2.

Referenced by EvtMBody3::decay().

00151                                             {
00152   bool accept=false;
00153   accept= EvtHis2F::AR(costheta,mass,max2,WT2);
00154  
00155   return accept;
00156 }

bool EvtNT3::AR3 ( double  costheta,
double  mass 
)

Definition at line 159 of file EvtNT3.cc.

References EvtHis2F::AR(), max3, and WT3.

Referenced by EvtMBody3::decay().

00159                                             {
00160   bool accept=false;
00161   accept= EvtHis2F::AR(costheta,mass,max3,WT3);
00162  
00163   return accept;
00164 }

int EvtNT3::calculateBins ( int  entries  ) 

Definition at line 133 of file EvtNT3.cc.

References bins, and Ncos.

Referenced by init().

00133                                     {
00134   int bins,ncell;
00135   ncell=30;  //at lease to require each cell to have 30 events
00136   bins=entries/ncell/Ncos;
00137   if(bins>100){bins=100;}
00138   return bins;
00139 }

int EvtHis2F::getBINSx (  )  [inline, inherited]

Definition at line 64 of file EvtHis2F.hh.

References EvtHis2F::BINSx.

00064 {return BINSx;}

int EvtHis2F::getBINSy (  )  [inline, inherited]

Definition at line 65 of file EvtHis2F.hh.

References EvtHis2F::BINSy.

00065 {return BINSy;}

const char * EvtHis2F::getFile (  )  [inherited]

Definition at line 27 of file EvtHis2F.cc.

References EvtHis2F::datafile.

Referenced by EvtHis2F::init().

00027                              {
00028   return datafile;
00029 }

TH2F * EvtHis2F::getHdt (  )  [inherited]

Definition at line 59 of file EvtHis2F.cc.

References EvtHis2F::HDATA.

00059                        {
00060   return HDATA;
00061 }

TH2F * EvtHis2F::getHmc (  )  [inherited]

Definition at line 55 of file EvtHis2F.cc.

References EvtHis2F::HMC.

00055                        {
00056   return HMC;
00057 }

const char * EvtHis2F::getHTitle (  )  [inherited]

Definition at line 31 of file EvtHis2F.cc.

References EvtHis2F::datatitle.

Referenced by EvtHis2F::init().

00031                                {
00032   return datatitle;
00033 }

TH2F * EvtHis2F::getHwt (  )  [inherited]

Definition at line 63 of file EvtHis2F.cc.

References EvtHis2F::HWT.

Referenced by init().

00063                        {
00064   return HWT;
00065 }

double EvtHis2F::getXlow (  )  [inline, inherited]

Definition at line 66 of file EvtHis2F.hh.

References EvtHis2F::xlow.

Referenced by EvtDecay::SuperBody3decay_make().

00066 {return xlow;}

double EvtHis2F::getXup (  )  [inline, inherited]

Definition at line 68 of file EvtHis2F.hh.

References EvtHis2F::xup.

Referenced by EvtDecay::SuperBody3decay_make().

00068 {return xup;}

double EvtHis2F::getYlow (  )  [inline, inherited]

Definition at line 67 of file EvtHis2F.hh.

References EvtHis2F::ylow.

Referenced by EvtDecay::SuperBody3decay_make().

00067 {return ylow;}

double EvtHis2F::getYup (  )  [inline, inherited]

Definition at line 69 of file EvtHis2F.hh.

References EvtHis2F::yup.

Referenced by EvtDecay::SuperBody3decay_make().

00069 {return yup;}

double EvtHis2F::getZmax (  )  [inherited]

Definition at line 192 of file EvtHis2F.cc.

References EvtHis2F::zmax.

Referenced by init().

00192                          {
00193   return zmax;
00194 }

double EvtHis2F::getZvalue ( double  m12_square,
double  m13_square 
) [inherited]

Definition at line 196 of file EvtHis2F.cc.

References EvtHis2F::HWT.

Referenced by EvtHis2F::AR().

00196                                                       {
00197   int xbin = HWT->GetXaxis()->FindBin(xmass2);
00198   int ybin = HWT->GetYaxis()->FindBin(ymass2);
00199   int xybin= HWT->GetBin(xbin,ybin);
00200   double zvalue=HWT->GetBinContent(xybin);
00201 //  std::cout<<"xmass, ymass, zvalue "<<xmass2<<" "<<ymass2<<" "<<zvalue<<std::endl;
00202   return zvalue;
00203 }

void EvtHis2F::HFill ( double  xmass2,
double  ymass2 
) [inherited]

Definition at line 129 of file EvtHis2F.cc.

References EvtHis2F::HMC, EvtHis2F::icount, and EvtHis2F::showFrame().

Referenced by EvtDecay::SuperBody3decay_make().

00129                                             {
00130   HMC->Fill(m12s,m13s,1.0);
00131   icount++;
00132   //  if(icount==100000)show(HMC);
00133   if(icount==100000) showFrame(HMC);
00134   return;
00135 }

void EvtHis2F::HReweight (  )  [inherited]

Definition at line 137 of file EvtHis2F.cc.

References EvtHis2F::HDATA, EvtHis2F::HMC, and EvtHis2F::HWT.

Referenced by EvtHis2F::init(), and EvtDecay::SuperBody3decay_make().

00137                          {  //reweight Dalitz Plot after get HDATA and HMC
00138   std::cout<<"Now I reweight the MC to the data Dalitz Plot"<<std::endl;
00139   double ndata=HDATA->Integral();
00140   std::cout<<"Number events in Dalitz plot = "<<ndata<<std::endl;
00141   double nmc=HMC->Integral();
00142   std::cout<<"Number of events in HMC reweight= "<<nmc<<std::endl;
00143   HWT->Divide(HDATA,HMC);
00144   ndata=HWT->Integral();
00145   std::cout<<"Number of events after reweight= "<<ndata<<std::endl;
00146   double norm=nmc/ndata;
00147   HWT->Scale(norm);
00148   nmc=HMC->Integral();
00149   std::cout<<"Number of events in HMC after scale= "<<nmc<<std::endl;
00150 }

void EvtHis2F::init ( TH2F *  hmc,
TH2F *  hdt,
TH2F *  hwt 
) [inherited]

Definition at line 236 of file EvtHis2F.cc.

References EvtHis2F::HReweight(), EvtHis2F::setHdt(), EvtHis2F::setHmc(), EvtHis2F::setHwt(), and EvtHis2F::setZmax().

00236                                                   {
00237   setHmc(hmc);
00238   setHdt(hdt);
00239   setHwt(hwt);
00240   HReweight();
00241   setZmax();
00242 }

void EvtNT3::init (  ) 

Reimplemented from EvtHis2F.

Definition at line 25 of file EvtNT3.cc.

References calculateBins(), chainDT, chainMC, costheta1, costheta2, costheta3, datafile, DT1, DT2, DT3, entriesDT, entriesMC, EvtHis2F::getHwt(), EvtHis2F::getZmax(), EvtHis2F::init(), ganga-rec::j, m12, m12_low, m12_up, m13, m13_low, m13_up, m23, m23_low, m23_up, max, max1, max2, max3, MC1, MC2, MC3, mcfile, Ncos, WT1, WT2, and WT3.

Referenced by EvtMBody3::init().

00025                  {
00026   max=0;
00027   Ncos=20;
00028   chainMC = new TChain("mc");
00029   chainDT = new TChain("data");
00030 
00031   chainMC->SetDirectory(0);
00032   chainDT->SetDirectory(0);
00033 
00034   chainMC->Add(mcfile);
00035   chainDT->Add(datafile); 
00036   //--MC
00037   chainMC->SetBranchAddress("costheta1",&costheta1); 
00038   chainMC->SetBranchAddress("costheta2",&costheta2); 
00039   chainMC->SetBranchAddress("costheta3",&costheta3); 
00040   chainMC->SetBranchAddress("m12",&m12); 
00041   chainMC->SetBranchAddress("m13",&m13); 
00042   chainMC->SetBranchAddress("m23",&m23); 
00043   //--Data
00044   chainDT->SetBranchAddress("costheta1",&costheta1); 
00045   chainDT->SetBranchAddress("costheta2",&costheta2); 
00046   chainDT->SetBranchAddress("costheta3",&costheta3); 
00047   chainDT->SetBranchAddress("m12",&m12); 
00048   chainDT->SetBranchAddress("m13",&m13); 
00049   chainDT->SetBranchAddress("m23",&m23); 
00050 
00051   entriesMC=(Int_t)chainMC->GetEntries(); 
00052   entriesDT=(Int_t)chainDT->GetEntries(); 
00053 
00054   m12_low=chainDT->GetMinimum("m12");
00055   m13_low=chainDT->GetMinimum("m13");
00056   m23_low=chainDT->GetMinimum("m23");
00057 
00058   m12_up =chainDT->GetMaximum("m12");
00059   m13_up =chainDT->GetMaximum("m13");
00060   m23_up =chainDT->GetMaximum("m23");
00061 
00062   Int_t  ny=calculateBins(entriesDT); //bins in mass axisis (Y-axisis)
00063 
00064   MC1 = new TH2F("myMC1","",Ncos,-1.0,1.0,ny,m23_low,m23_up); // costheta1 vs. m23
00065   MC2 = new TH2F("myMC2","",Ncos,-1.0,1.0,ny,m13_low,m13_up); // costheta2 vs. m13
00066   MC3 = new TH2F("myMC3","",Ncos,-1.0,1.0,ny,m12_low,m12_up); // costheta3 vs. m12
00067 
00068   DT1 = new TH2F("myDT1","",Ncos,-1.0,1.0,ny,m23_low,m23_up); // costheta1 vs. m23
00069   DT2 = new TH2F("myDT2","",Ncos,-1.0,1.0,ny,m13_low,m13_up); // costheta2 vs. m13
00070   DT3 = new TH2F("myDT3","",Ncos,-1.0,1.0,ny,m12_low,m12_up); // costheta3 vs. m12
00071 
00072   WT1 = new TH2F("myWT1","",Ncos,-1.0,1.0,ny,m23_low,m23_up); // costheta1 vs. m23
00073   WT2 = new TH2F("myWT2","",Ncos,-1.0,1.0,ny,m13_low,m13_up); // costheta2 vs. m13
00074   WT3 = new TH2F("myWT3","",Ncos,-1.0,1.0,ny,m12_low,m12_up); // costheta3 vs. m12
00075 
00076   MC1->SetDirectory(0);
00077   MC2->SetDirectory(0);
00078   MC3->SetDirectory(0);
00079 
00080   DT1->SetDirectory(0);
00081   DT2->SetDirectory(0);
00082   DT3->SetDirectory(0);
00083 
00084   WT1->SetDirectory(0);
00085   WT2->SetDirectory(0);
00086   WT3->SetDirectory(0);
00087 
00088   //filling MC histogram
00089    for(Int_t j=0;j<entriesMC;j++) {
00090      chainMC->GetEntry(j);  
00091      MC1->Fill(costheta1,m23);
00092      MC2->Fill(costheta2,m13);
00093      MC3->Fill(costheta3,m12);
00094    }
00095 
00096   //filling data histogram
00097    for(Int_t j=0;j<entriesDT;j++) {
00098      chainDT->GetEntry(j);  
00099      DT1->Fill(costheta1,m23);
00100      DT2->Fill(costheta2,m13);
00101      DT3->Fill(costheta3,m12);
00102    }
00103    //--------debugging ---------
00104    //  showFrame(MC1);
00105    //  showFrame(MC2);
00106    //  showFrame(MC3);
00107  
00108   EvtHis2F::init(MC1,DT1,WT1);
00109   WT1  = EvtHis2F::getHwt();
00110   max1 = EvtHis2F::getZmax();
00111 
00112   EvtHis2F::init(MC2,DT2,WT2);
00113   WT2  = EvtHis2F::getHwt();
00114   max2 = EvtHis2F::getZmax();
00115 
00116   EvtHis2F::init(MC3,DT3,WT3);
00117   WT3  = EvtHis2F::getHwt();
00118   max3 = EvtHis2F::getZmax();
00119  
00120  //------------
00121  
00122   /* 
00123    show(WT1);
00124    std::cout<<"================================================="<<std::endl;
00125    show(WT2);
00126    std::cout<<"================================================="<<std::endl;
00127    show(WT3);
00128   */
00129 
00130 }

void EvtHis2F::setBins ( TH2F *  h2  )  [inherited]

Definition at line 152 of file EvtHis2F.cc.

References EvtHis2F::BINSx, EvtHis2F::BINSy, EvtHis2F::xlow, EvtHis2F::xup, EvtHis2F::ylow, and EvtHis2F::yup.

Referenced by EvtHis2F::AR(), and EvtHis2F::setZmax().

00152                                {
00153   TAxis* Xaxis=h2->GetXaxis();
00154   TAxis* Yaxis=h2->GetYaxis();
00155   BINSx  =Xaxis->GetLast();  
00156   BINSy  =Yaxis->GetLast();
00157   xlow=Xaxis->GetBinLowEdge(1);
00158   ylow=Yaxis->GetBinLowEdge(1);
00159   xup =Xaxis->GetBinUpEdge(BINSx);
00160   yup =Yaxis->GetBinUpEdge(BINSy);
00161 }

void EvtHis2F::setBINSx ( int  bx  )  [inline, inherited]

Definition at line 56 of file EvtHis2F.hh.

References EvtHis2F::BINSx.

00056 {BINSx=bx;}

void EvtHis2F::setBINSy ( int  by  )  [inline, inherited]

Definition at line 57 of file EvtHis2F.hh.

References EvtHis2F::BINSy.

00057 {BINSy=by;}

void EvtNT3::setDTfile ( const char *  name  )  [inline]

Definition at line 35 of file EvtNT3.hh.

References datafile.

Referenced by EvtMBody3::init().

00035 {datafile=name;}

void EvtHis2F::setFile ( const char *  dtfile  )  [inherited]

Definition at line 35 of file EvtHis2F.cc.

References EvtHis2F::datafile.

Referenced by EvtDecay::initialize().

00035                                         {
00036   datafile=dtfile;
00037   return;
00038 }

void EvtHis2F::setHdt ( TH2F *  H2  )  [inherited]

Definition at line 50 of file EvtHis2F.cc.

References EvtHis2F::HDATA.

Referenced by EvtHis2F::init().

00050                                {
00051   HDATA=(TH2F*) H2->Clone("HDATA");
00052   return;
00053 }

void EvtHis2F::setHmc ( TH2F *  H2  )  [inherited]

Definition at line 45 of file EvtHis2F.cc.

References EvtHis2F::HMC.

Referenced by EvtHis2F::init().

00045                                {
00046   HMC=(TH2F*) H2->Clone("HMC");
00047   return;
00048 }

void EvtHis2F::setHTitle ( const char *  htitle  )  [inherited]

Definition at line 40 of file EvtHis2F.cc.

References EvtHis2F::datatitle.

Referenced by EvtDecay::initialize().

00040                                           {
00041   datatitle=htitle;
00042   return;
00043 }

void EvtHis2F::setHwt ( TH2F *  H2  )  [inline, inherited]

Definition at line 50 of file EvtHis2F.hh.

References EvtHis2F::HWT.

Referenced by EvtHis2F::init().

00050 { HWT=(TH2F*) H2->Clone("HWT");}

void EvtNT3::setMCfile ( const char *  name  )  [inline]

Definition at line 36 of file EvtNT3.hh.

References mcfile.

Referenced by EvtMBody3::init().

00036 {mcfile=name;}

void EvtHis2F::setXlow ( double  xl  )  [inline, inherited]

Definition at line 58 of file EvtHis2F.hh.

References EvtHis2F::xlow.

00058 {xlow=xl;}

void EvtHis2F::setXup ( double  xu  )  [inline, inherited]

Definition at line 59 of file EvtHis2F.hh.

References EvtHis2F::xup.

00059 {xup=xu;}

void EvtHis2F::setYlow ( double  yl  )  [inline, inherited]

Definition at line 60 of file EvtHis2F.hh.

References EvtHis2F::ylow.

00060 {ylow=yl;}

void EvtHis2F::setYup ( double  yu  )  [inline, inherited]

Definition at line 61 of file EvtHis2F.hh.

References EvtHis2F::yup.

00061 {yup=yu;}

void EvtHis2F::setZmax ( TH2F *  H2  )  [inherited]

Definition at line 162 of file EvtHis2F.cc.

References EvtHis2F::BINSx, EvtHis2F::BINSy, EvtHis2F::setBins(), and EvtHis2F::zmax.

00162                                 {
00163   double ymax=0;
00164   setBins(hwt);
00165 
00166    for(int dx=1;dx <= BINSx;dx++){
00167      for(int dy=1;dy <= BINSy;dy++){
00168        int nxy=hwt->GetBin(dx,dy);
00169        double ncell=hwt->GetBinContent(nxy);
00170        if(ncell<=0) continue;
00171        if(ncell>ymax){ymax=ncell;}
00172      }
00173    }
00174    zmax=ymax;
00175 }

void EvtHis2F::setZmax (  )  [inherited]

Definition at line 177 of file EvtHis2F.cc.

References EvtHis2F::BINSx, EvtHis2F::BINSy, EvtHis2F::HWT, EvtHis2F::setBins(), and EvtHis2F::zmax.

Referenced by EvtHis2F::init(), and EvtDecay::SuperBody3decay_make().

00177                        {
00178   double ymax=0;
00179   setBins(HWT);
00180 
00181    for(int dx=1;dx <= BINSx;dx++){
00182      for(int dy=1;dy <= BINSy;dy++){
00183        int nxy=HWT->GetBin(dx,dy);
00184        double ncell=HWT->GetBinContent(nxy);
00185        if(ncell<=0) continue;
00186        if(ncell>ymax){ymax=ncell;}
00187      }
00188    }
00189    zmax=ymax;
00190 }

void EvtHis2F::show ( TH2F *  h2  )  [inherited]

Definition at line 67 of file EvtHis2F.cc.

References genRecEmupikp::i, and ganga-rec::j.

00067                             {
00068   TAxis* Xaxis=h2->GetXaxis();
00069   TAxis* Yaxis=h2->GetYaxis();
00070  
00071   int bx  =Xaxis->GetLast();  
00072   int by  =Yaxis->GetLast();
00073 
00074   for(int i=1;i<bx+1;i++){
00075     for(int j=1;j<by+1;j++){
00076       int ij=h2->GetBin(i,j);
00077       double xij=h2->GetBinContent(ij);
00078       std::cout<<"i,j,cell,value "<<i<<" "<<j<<" "<<ij<<" "<<xij<<std::endl;
00079     }
00080   }
00081 }

void EvtHis2F::showFrame ( TH2F *  h2  )  [inherited]

Definition at line 83 of file EvtHis2F.cc.

Referenced by EvtHis2F::HFill().

00083                                  {
00084   TAxis* Xaxis=h2->GetXaxis();
00085   TAxis* Yaxis=h2->GetYaxis();
00086  
00087   int bx  =Xaxis->GetLast();  
00088   int by  =Yaxis->GetLast();
00089   
00090   double x1 =Xaxis->GetBinLowEdge(1);
00091   double y1 =Yaxis->GetBinLowEdge(1);
00092   double x2 =Xaxis->GetBinUpEdge(bx);
00093   double y2 =Yaxis->GetBinUpEdge(by);
00094   std::cout<<"N_x, x_low, x_up; N_y, y_low, y_up "
00095            <<bx<<" "<<x1<<" "<<x2<<" "<<by<<" "<<y1<<" "<<y2<<std::endl;
00096 }


Member Data Documentation

TChain * EvtNT3::chainDT [private]

Definition at line 40 of file EvtNT3.hh.

Referenced by init().

TChain* EvtNT3::chainMC [private]

Definition at line 40 of file EvtNT3.hh.

Referenced by init().

double EvtNT3::costheta1 [private]

Definition at line 47 of file EvtNT3.hh.

Referenced by init().

double EvtNT3::costheta2 [private]

Definition at line 47 of file EvtNT3.hh.

Referenced by init().

double EvtNT3::costheta3 [private]

Definition at line 47 of file EvtNT3.hh.

Referenced by init().

TFile* EvtNT3::dataf [private]

Reimplemented from EvtHis2F.

Definition at line 41 of file EvtNT3.hh.

const char* EvtNT3::datafile [private]

Reimplemented from EvtHis2F.

Definition at line 42 of file EvtNT3.hh.

Referenced by init(), and setDTfile().

TH2F* EvtNT3::DT1 [private]

Definition at line 44 of file EvtNT3.hh.

Referenced by init().

TH2F * EvtNT3::DT2 [private]

Definition at line 44 of file EvtNT3.hh.

Referenced by init().

TH2F * EvtNT3::DT3 [private]

Definition at line 44 of file EvtNT3.hh.

Referenced by init().

int EvtNT3::entriesDT [private]

Definition at line 49 of file EvtNT3.hh.

Referenced by init().

int EvtNT3::entriesMC [private]

Definition at line 49 of file EvtNT3.hh.

Referenced by init().

double EvtNT3::m12 [private]

Definition at line 47 of file EvtNT3.hh.

Referenced by init().

double EvtNT3::m12_low [private]

Definition at line 48 of file EvtNT3.hh.

Referenced by init().

double EvtNT3::m12_up [private]

Definition at line 48 of file EvtNT3.hh.

Referenced by init().

double EvtNT3::m13 [private]

Definition at line 47 of file EvtNT3.hh.

Referenced by init().

double EvtNT3::m13_low [private]

Definition at line 48 of file EvtNT3.hh.

Referenced by init().

double EvtNT3::m13_up [private]

Definition at line 48 of file EvtNT3.hh.

Referenced by init().

double EvtNT3::m23 [private]

Definition at line 47 of file EvtNT3.hh.

Referenced by init().

double EvtNT3::m23_low [private]

Definition at line 48 of file EvtNT3.hh.

Referenced by init().

double EvtNT3::m23_up [private]

Definition at line 48 of file EvtNT3.hh.

Referenced by init().

double EvtNT3::max [private]

Definition at line 46 of file EvtNT3.hh.

Referenced by init().

double EvtNT3::max1 [private]

Reimplemented from EvtHis2F.

Definition at line 46 of file EvtNT3.hh.

Referenced by AR1(), and init().

double EvtNT3::max2 [private]

Reimplemented from EvtHis2F.

Definition at line 46 of file EvtNT3.hh.

Referenced by AR2(), and init().

double EvtNT3::max3 [private]

Reimplemented from EvtHis2F.

Definition at line 46 of file EvtNT3.hh.

Referenced by AR3(), and init().

TH2F* EvtNT3::MC1 [private]

Definition at line 43 of file EvtNT3.hh.

Referenced by init().

TH2F * EvtNT3::MC2 [private]

Definition at line 43 of file EvtNT3.hh.

Referenced by init().

TH2F * EvtNT3::MC3 [private]

Definition at line 43 of file EvtNT3.hh.

Referenced by init().

TFile * EvtNT3::mcf [private]

Definition at line 41 of file EvtNT3.hh.

const char * EvtNT3::mcfile [private]

Definition at line 42 of file EvtNT3.hh.

Referenced by init(), and setMCfile().

int EvtNT3::Ncos [private]

Definition at line 49 of file EvtNT3.hh.

Referenced by calculateBins(), and init().

int EvtNT3::Nmass [private]

Definition at line 49 of file EvtNT3.hh.

TH2F* EvtNT3::WT1 [private]

Reimplemented from EvtHis2F.

Definition at line 45 of file EvtNT3.hh.

Referenced by AR1(), and init().

TH2F * EvtNT3::WT2 [private]

Reimplemented from EvtHis2F.

Definition at line 45 of file EvtNT3.hh.

Referenced by AR2(), and init().

TH2F * EvtNT3::WT3 [private]

Reimplemented from EvtHis2F.

Definition at line 45 of file EvtNT3.hh.

Referenced by AR3(), and init().


Generated on Tue Nov 29 23:19:08 2016 for BOSS_7.0.2 by  doxygen 1.4.7