TRadCor Class Reference

#include <TRadCor.h>

List of all members.

Public Member Functions

 TRadCor ()
 TRadCor (TVCrossPart *)
 ~TRadCor ()
void MakeMaximum (const unsigned int &)
void MakeIntegral (const unsigned int &)
void SetCuts ()
void SetAuxiliaryParameters ()
double Norm (const unsigned int &)
void SetNEvents (const unsigned int &n)
void MakeAllMaximums ()
void MakeAllIntegrals ()
void Init ()
unsigned int MakeEvent ()
void MakePart ()
unsigned int GetNPart ()
double GetMax (unsigned int i)
double GetMin (unsigned int i)
unsigned int GetNSim (unsigned int i)
unsigned int GetN (unsigned int i)
unsigned int GetWN (unsigned int i)
double GetCross (unsigned int i)
double GetECross (unsigned int i)
double GetCross2 (unsigned int i)
double GetECross2 (unsigned int i)
void GetEvent (double &p0, double &t0, double &ph0, double &p1, double &t1, double &ph)
void MakeEvent (double &p0, double &t0, double &ph0, double &p1, double &t1, double &ph, unsigned int &ipart)
void MakeEvent (double *m, int &n)
TVCrossPartGetCrossPart ()
void SetMType (const bool &x)
void SetSmear (const bool &x)
void MakeCrossSection ()
void SetPartList (const bool *InList)

Protected Member Functions

void SetSpecialCase (unsigned int i)

Protected Attributes

unsigned int fNPart
unsigned int fNEvents
double * fMax
double * fMin
double * fSigma
double * fCross
double * fCross2
double * fECross
double * fECross2
double * fSM
double * fSM2
double * fPart
unsigned int * fNSim
unsigned int * fN
unsigned int * fWN
boolfInList
TVCrossPartfMatrix
bool fNew
double fTheta_Aver_0
bool fIsSmear


Detailed Description

Definition at line 7 of file TRadCor.h.


Constructor & Destructor Documentation

TRadCor::TRadCor (  ) 

Definition at line 37 of file TRadCor.C.

References fCross, fCross2, fECross, fECross2, fInList, fMatrix, fMax, fMin, fN, fNPart, fNSim, fPart, fSigma, fSM, fSM2, and fWN.

00037                 {
00038   fMatrix  = 0;
00039   fWN      = 0;
00040   fN       = 0;
00041   fNSim    = 0;
00042   fPart    = 0;
00043   fSM2     = 0;
00044   fSM      = 0;
00045   fECross2 = 0;
00046   fECross  = 0;
00047   fCross2  = 0;
00048   fCross   = 0;
00049   fSigma   = 0;
00050   fMin     = 0;
00051   fMax     = 0;
00052   fNPart   = 0;
00053   fInList  = 0;
00054 }

TRadCor::TRadCor ( TVCrossPart  ) 

Definition at line 12 of file TRadCor.C.

References fCross, fCross2, fECross, fECross2, fInList, fIsSmear, fMatrix, fMax, fMin, fN, fNEvents, fNew, fNPart, fNSim, fPart, fSigma, fSM, fSM2, fWN, TVCrossPart::GetNPart(), genRecEmupikp::i, and Init().

00012                               {
00013   fNEvents = 10000;
00014   fMatrix  = m;
00015   fNPart   = fMatrix->GetNPart();
00016   fMax     = new double[fNPart];
00017   fMin     = new double[fNPart];
00018   fSigma   = new double[fNPart];
00019   fCross   = new double[fNPart];
00020   fCross2  = new double[fNPart];
00021   fECross  = new double[fNPart];
00022   fECross2 = new double[fNPart];
00023   fSM      = new double[fNPart];
00024   fSM2     = new double[fNPart];
00025   fPart    = new double[fNPart];
00026   fNSim    = new unsigned int[fNPart];
00027   fN       = new unsigned int[fNPart];
00028   fWN      = new unsigned int[fNPart];
00029   fInList  = new bool[fNPart];
00030   for(unsigned int i=0; i<fNPart; i++) fInList[i] = true;
00031 
00032   fNew     = true;
00033   fIsSmear = false;
00034   Init();
00035 }

TRadCor::~TRadCor (  ) 

Definition at line 78 of file TRadCor.C.

References fCross, fCross2, fECross, fECross2, fInList, fMax, fMin, fN, fNSim, fPart, fSigma, fSM, fSM2, and fWN.

00078                  {
00079   delete [] fMax;
00080   delete [] fMin;
00081   delete [] fSigma;
00082   delete [] fCross;
00083   delete [] fCross2;
00084   delete [] fECross;
00085   delete [] fECross2;
00086   delete [] fSM;
00087   delete [] fSM2;
00088   delete [] fPart;
00089   delete [] fNSim;
00090   delete [] fN;
00091   delete [] fWN;
00092   delete [] fInList;
00093 }


Member Function Documentation

double TRadCor::GetCross ( unsigned int  i  )  [inline]

Definition at line 60 of file TRadCor.h.

References fCross.

Referenced by MakeCrossSection().

00060 {return fCross[i];}

double TRadCor::GetCross2 ( unsigned int  i  )  [inline]

Definition at line 62 of file TRadCor.h.

References fCross2.

Referenced by MakeCrossSection().

00062 {return fCross2[i];}

TVCrossPart* TRadCor::GetCrossPart (  )  [inline]

Definition at line 77 of file TRadCor.h.

References fMatrix.

Referenced by hist_sample().

00077 { return fMatrix;}

double TRadCor::GetECross ( unsigned int  i  )  [inline]

Definition at line 61 of file TRadCor.h.

References fECross.

Referenced by MakeCrossSection().

00061 {return fECross[i];}

double TRadCor::GetECross2 ( unsigned int  i  )  [inline]

Definition at line 63 of file TRadCor.h.

References fECross2.

Referenced by MakeCrossSection().

00063 {return fECross2[i];}

void TRadCor::GetEvent ( double &  p0,
double &  t0,
double &  ph0,
double &  p1,
double &  t1,
double &  ph 
) [inline]

Definition at line 64 of file TRadCor.h.

References fMatrix, and TVCrossPart::GetEvent().

00065                                                           {
00066     fMatrix->GetEvent(p0, t0, ph0, p1, t1, ph);
00067   }

double TRadCor::GetMax ( unsigned int  i  )  [inline]

Definition at line 55 of file TRadCor.h.

References fMax.

Referenced by main(), and MakeCrossSection().

00055 {return fMax[i];}

double TRadCor::GetMin ( unsigned int  i  )  [inline]

Definition at line 56 of file TRadCor.h.

References fMin.

Referenced by MakeCrossSection().

00056 {return fMin[i];}

unsigned int TRadCor::GetN ( unsigned int  i  )  [inline]

Definition at line 58 of file TRadCor.h.

References fN.

Referenced by main().

00058 {return fN[i];}

unsigned int TRadCor::GetNPart (  )  [inline]

Definition at line 54 of file TRadCor.h.

References fNPart.

00054 {return fNPart;}

unsigned int TRadCor::GetNSim ( unsigned int  i  )  [inline]

Definition at line 57 of file TRadCor.h.

References fNSim.

Referenced by MakeCrossSection().

00057 {return fNSim[i];}

unsigned int TRadCor::GetWN ( unsigned int  i  )  [inline]

Definition at line 59 of file TRadCor.h.

References fWN.

Referenced by main(), and MakeCrossSection().

00059 {return fWN[i];}

void TRadCor::Init (  ) 

Definition at line 56 of file TRadCor.C.

References TKinemCut::AverageThetaMin(), cos(), fCross, fCross2, fECross, fECross2, fMatrix, fMax, fMin, fN, fNPart, fNSim, fPart, fSigma, fSM, fSM2, fTheta_Aver_0, fWN, gCut, TRadGlobal::Get_de(), TRadGlobal::Get_E(), TRadGlobal::Get_ThetaMin(), gGlobal, genRecEmupikp::i, and TVCrossPart::Init().

Referenced by init_prime_gen_(), Mcgpj::initialize(), main(), and TRadCor().

00056                   {
00057   fMatrix->Init();
00058   for(unsigned int i=0; i<fNPart; i++){
00059     fMax[i]     =-1e20;
00060     fMin[i]     = 1e20;
00061     fSigma[i]   = 1e20;
00062     fNSim[i]    = 0;
00063     fN[i]       = 0;
00064     fWN[i]      = 0;
00065     fSM[i]      = 0;
00066     fSM2[i]     = 0;
00067     fPart[i]    = 0;
00068     fCross[i]   = 0;
00069     fCross2[i]  = 0;
00070     fECross[i]  = 0;
00071     fECross2[i] = 0;
00072   }
00073   
00074   fTheta_Aver_0  = gCut->AverageThetaMin() - 0.5*gGlobal->Get_de()/(gGlobal->Get_E()*cos(gCut->AverageThetaMin()));
00075   fTheta_Aver_0  = (fTheta_Aver_0<gGlobal->Get_ThetaMin()) ? gGlobal->Get_ThetaMin() : fTheta_Aver_0;
00076 }

void TRadCor::MakeAllIntegrals (  ) 

Definition at line 155 of file TRadCor.C.

References fNPart, genRecEmupikp::i, MakeIntegral(), and SetSpecialCase().

00155                               {
00156   for(unsigned int i=0; i<fNPart; i++){
00157     SetSpecialCase(i);
00158     MakeIntegral(i);
00159   }
00160 }

void TRadCor::MakeAllMaximums (  ) 

Definition at line 148 of file TRadCor.C.

References fNPart, genRecEmupikp::i, MakeMaximum(), and SetSpecialCase().

00148                              {
00149   for(unsigned int i=0; i<fNPart; i++){
00150     SetSpecialCase(i);
00151     MakeMaximum(i);
00152   }
00153 }

void TRadCor::MakeCrossSection (  ) 

Definition at line 184 of file TRadCor.C.

References fInList, fNPart, TRadGlobal::Get_RelativeError(), TRadGlobal::Get_TotalError(), GetCross(), GetCross2(), GetECross(), GetECross2(), GetMax(), GetMin(), GetNSim(), GetWN(), gGlobal, genRecEmupikp::i, ganga-rec::j, MakeIntegral(), MakeMaximum(), MakePart(), std, and timer.

Referenced by init_prime_gen_(), Mcgpj::initialize(), and main().

00184                               {
00185   using namespace std;
00186   bool *done = new bool[fNPart];
00187   TStopwatch *timer = new TStopwatch();
00188   timer->Start(kFALSE);
00189   //  timer->Stop();
00190   //  cout<<"REALTIME = "<<timer->RealTime()<<", CPUTIME = "<<timer->CpuTime()<<endl<<flush;
00191   //  timer->Start(kFALSE);
00192 
00193   for(unsigned int j=0;j<fNPart;j++) done[j] = false;
00194   int n = 0;
00195   for(unsigned int j=0;j<fNPart;j++) if(fInList[j]) n++;
00196   double te  = gGlobal->Get_TotalError()/sqrt(n/2.);
00197   double tre = gGlobal->Get_RelativeError()*sqrt(2.);
00198   bool alldone = false;
00199   while(!alldone){
00200     alldone = true;
00201     for(unsigned int j=0;j<fNPart; j++){
00202       if(!fInList[j])continue;
00203       unsigned int i = j;
00204       if(!done[j]){
00205         MakeMaximum(i);
00206         double as = fabs(GetCross2(i));
00207         double es = fabs(GetECross2(i));
00208         if((es < te && es/as < tre) || ( es < 0.2*te )){
00209           cout<<"Part = "<<i<<", Min = "<<GetMin(i)<<", Max = "<<GetMax(i)<<", "
00210               <<"N = "<<GetWN(i)<<", "
00211               <<"sw = "<<GetCross2(i)<<" +- "<<es<<" nb"
00212               <<endl;
00213           done[j] = true;
00214         } else {
00215           alldone = false;
00216         }
00217       }
00218     }
00219   }
00220   
00221   timer->Stop();
00222   cout<<"REALTIME = "<<timer->RealTime()<<", CPUTIME = "<<timer->CpuTime()<<endl<<flush;
00223   timer->Start(kFALSE);
00224   for(unsigned int j=0;j<fNPart;j++) done[j] = false;
00225   
00226   double su = 0, sw = 0, esu=0, esw=0;
00227   alldone = false;
00228   while(!alldone){
00229     alldone = true;
00230     for(unsigned int j=0;j<fNPart;j++){
00231       if(!fInList[j])continue;
00232       unsigned int i = j;
00233       if(!done[j]){
00234         MakeIntegral(i);
00235         double as = fabs(GetCross2(i));
00236         double es = fabs(GetECross2(i));
00237         if ( (es < te/sqrt(2.) && es/as < tre/sqrt(2.) && (GetNSim(i) > 4000 || GetMax(i)<=0) ) ||
00238              (es < 0.2*te/sqrt(2.)  && GetNSim(i) > 400  ) || 
00239              (es/as < 1e-5 && GetECross(i)/GetCross(i) < 1e-4)
00240              ){
00241           cout<<"Part = "<<i<<", "
00242               <<"N = "<<GetNSim(i)<<", "
00243               <<"s = "<<GetCross(i)<<" +- "<<GetECross(i)<<" nb"<<", "
00244               <<"N = "<<GetWN(i)<<", "
00245               <<"sw = "<<GetCross2(i)<<" +- "<<es<<" nb"
00246               <<endl;
00247           su  += GetCross(i);
00248           esu += GetECross(i)*GetECross(i);
00249           sw  += GetCross2(i);
00250           esw += es*es;
00251           done[j] = true;
00252         } else {
00253           alldone = false;
00254         }
00255       }
00256     }
00257   }
00258   esu = sqrt(esu);
00259   esw = sqrt(esw);
00260   cout<<"CrossSection = "<<su<<" +- "<<esu<<" nb, "
00261       <<"relative error is "<<esu/su*100<<"%"<<endl;
00262   cout<<"CrossSection2 = "<<sw<<" +- "<<esw<<" nb, "
00263       <<"relative error is "<<esw/sw*100<<"%"<<endl;
00264   
00265   timer->Stop();
00266   cout<<"REALTIME = "<<timer->RealTime()<<", CPUTIME = "<<timer->CpuTime()<<endl<<flush;
00267   timer->Start(kFALSE);
00268 
00269   MakePart();
00270 
00271   delete [] done;
00272   delete timer;
00273 }

void TRadCor::MakeEvent ( double *  m,
int &  n 
) [inline]

Definition at line 73 of file TRadCor.h.

References fMatrix, TVCrossPart::GetEvent(), and MakeEvent().

00073                                           {
00074     MakeEvent();
00075     fMatrix->GetEvent(m,n);    
00076   }

void TRadCor::MakeEvent ( double &  p0,
double &  t0,
double &  ph0,
double &  p1,
double &  t1,
double &  ph,
unsigned int &  ipart 
) [inline]

Definition at line 68 of file TRadCor.h.

References fMatrix, TVCrossPart::GetEvent(), and MakeEvent().

00069                                                                                 {
00070     ipart = MakeEvent();
00071     fMatrix->GetEvent(p0, t0, ph0, p1, t1, ph);
00072   }

unsigned int TRadCor::MakeEvent (  ) 

Definition at line 172 of file TRadCor.C.

References fMatrix, fMax, fPart, TVCrossPart::GetValue(), and SetSpecialCase().

Referenced by Mcgpj::execute(), hist_sample(), hist_sample_angle(), hist_sample_comp(), MakeEvent(), and makeevent_().

00172                                {
00173   double r = gRandom->Rndm();
00174   unsigned int ipart = 0;
00175   while(r>fPart[ipart]) ipart++;
00176   SetSpecialCase(ipart);
00177   while (true){
00178     double m = fMatrix->GetValue(ipart);
00179     if ( m != 0  &&  m>fMax[ipart]*gRandom->Rndm() ) break;
00180   }
00181   return ipart;
00182 }

void TRadCor::MakeIntegral ( const unsigned int &   ) 

Definition at line 114 of file TRadCor.C.

References fCross, fCross2, fECross, fECross2, fMatrix, fMax, fN, fNEvents, fNSim, fSM, fSM2, fWN, TRadGlobal::Get_Norm(), TVCrossPart::GetEvent(), TVCrossPart::GetValue(), gGlobal, gH, gH2, genRecEmupikp::i, M_PI, and SetSpecialCase().

Referenced by MakeAllIntegrals(), and MakeCrossSection().

00114                                                    {
00115   SetSpecialCase(ipart);
00116   for(unsigned int i=0;i<fNEvents;i++){
00117     double m = fMatrix->GetValue(ipart);
00118       
00119     fSM[ipart] += m;
00120     fSM2[ipart] += m*m;
00121     fWN[ipart]++;
00122     fN[ipart]++;
00123 #ifdef HIST
00124     double p0, t0, ph0, p1, t1, ph;
00125     fMatrix->GetEvent(p0, t0, ph0, p1, t1, ph);
00126     gH[ipart]->Fill(fabs(t0+t1-M_PI), m);
00127 #endif
00128     if ( m != 0  &&  m > fMax[ipart]*gRandom->Rndm() ) {
00129       fNSim[ipart]++;
00130 #ifdef HIST
00131       gH2[ipart]->Fill(fabs(t0+t1-M_PI));
00132 #endif
00133       //      fMatrix->GetEvent()->CosPrint();
00134     }
00135   }
00136   fCross[ipart]  = gGlobal->Get_Norm()*fNSim[ipart]*fMax[ipart]/fN[ipart];
00137   double r = (1.0*fNSim[ipart])/fN[ipart];
00138   fECross[ipart] = gGlobal->Get_Norm()*fMax[ipart]*sqrt(r*(1.-r)/fN[ipart]);
00139 
00140   fCross2[ipart]  = gGlobal->Get_Norm()*fSM[ipart]/fWN[ipart];
00141   fECross2[ipart] = gGlobal->Get_Norm()*sqrt((fSM2[ipart]-1.*fSM[ipart]*fSM[ipart]/fWN[ipart]))/fWN[ipart];
00142 }

void TRadCor::MakeMaximum ( const unsigned int &   ) 

Definition at line 95 of file TRadCor.C.

References fCross2, fECross2, fMatrix, fMax, fMin, fNEvents, fSM, fSM2, fWN, TRadGlobal::Get_Norm(), TVCrossPart::GetEvent(), TVCrossPart::GetValue(), gGlobal, gH, genRecEmupikp::i, M_PI, and SetSpecialCase().

Referenced by MakeAllMaximums(), and MakeCrossSection().

00095                                                   {
00096   SetSpecialCase(ipart);
00097   for(unsigned int i=0;i<fNEvents;i++){
00098     double m = fMatrix->GetValue(ipart);
00099     fSM[ipart]  += m;
00100     fSM2[ipart] += m*m;
00101     fWN[ipart]++;
00102     if ( m != 0  &&  m > fMax[ipart] ) fMax[ipart] = m; 
00103     if ( m != 0  &&  m < fMin[ipart] ) fMin[ipart] = m; 
00104 #ifdef HIST
00105     double p0, t0, ph0, p1, t1, ph;
00106     fMatrix->GetEvent(p0, t0, ph0, p1, t1, ph);
00107     gH[ipart]->Fill(fabs(t0+t1-M_PI), m);
00108 #endif
00109   }
00110   fCross2[ipart]  = gGlobal->Get_Norm()*fSM[ipart]/fWN[ipart];
00111   fECross2[ipart] = gGlobal->Get_Norm()*sqrt((fSM2[ipart]-1.*fSM[ipart]*fSM[ipart]/fWN[ipart]))/fWN[ipart];
00112 }

void TRadCor::MakePart (  ) 

Definition at line 162 of file TRadCor.C.

References fCross2, fNPart, fPart, and genRecEmupikp::i.

Referenced by MakeCrossSection().

00162                       {
00163   fPart[0] = fCross2[0];
00164   for(unsigned int i=1; i<fNPart; i++)
00165     fPart[i] = fPart[i-1] + fCross2[i];
00166 
00167   for(unsigned int i=0; i<fNPart; i++){
00168     fPart[i]/= fPart[fNPart-1];
00169   }
00170 }

double TRadCor::Norm ( const unsigned int &   ) 

Definition at line 144 of file TRadCor.C.

00144                                              {
00145   return 1;
00146 }

void TRadCor::SetAuxiliaryParameters (  )  [inline]

Definition at line 46 of file TRadCor.h.

00046 {}

void TRadCor::SetCuts (  )  [inline]

Definition at line 45 of file TRadCor.h.

00045 {};

void TRadCor::SetMType ( const bool x  )  [inline]

Definition at line 78 of file TRadCor.h.

References fNew.

00078 {fNew = x;}

void TRadCor::SetNEvents ( const unsigned int &  n  )  [inline]

Definition at line 48 of file TRadCor.h.

References fNEvents.

Referenced by init_prime_gen_(), Mcgpj::initialize(), and main().

00048 {fNEvents = n;}

void TRadCor::SetPartList ( const bool InList  )  [inline]

Definition at line 81 of file TRadCor.h.

References fInList, fNPart, and genRecEmupikp::i.

Referenced by init_prime_gen_(), Mcgpj::initialize(), and main().

00081                                       {
00082     for(unsigned int i=0; i<fNPart; i++) fInList[i] = InList[i];
00083   }

void TRadCor::SetSmear ( const bool x  )  [inline]

Definition at line 79 of file TRadCor.h.

References fIsSmear.

Referenced by main().

00079 {fIsSmear =x;}

void TRadCor::SetSpecialCase ( unsigned int  i  )  [inline, protected]

Definition at line 32 of file TRadCor.h.

References fIsSmear, fMatrix, fTheta_Aver_0, gCut, TVCrossPart::SetThetaMin(), and TKinemCut::ThetaMin().

Referenced by MakeAllIntegrals(), MakeAllMaximums(), MakeEvent(), MakeIntegral(), and MakeMaximum().

00032                                      {
00033     if ( i == 0 && !fIsSmear )
00034       fMatrix->SetThetaMin(fTheta_Aver_0);
00035     else
00036       fMatrix->SetThetaMin(gCut->ThetaMin());
00037   }


Member Data Documentation

double* TRadCor::fCross [protected]

Definition at line 15 of file TRadCor.h.

Referenced by GetCross(), Init(), MakeIntegral(), TRadCor(), and ~TRadCor().

double* TRadCor::fCross2 [protected]

Definition at line 16 of file TRadCor.h.

Referenced by GetCross2(), Init(), MakeIntegral(), MakeMaximum(), MakePart(), TRadCor(), and ~TRadCor().

double* TRadCor::fECross [protected]

Definition at line 17 of file TRadCor.h.

Referenced by GetECross(), Init(), MakeIntegral(), TRadCor(), and ~TRadCor().

double* TRadCor::fECross2 [protected]

Definition at line 18 of file TRadCor.h.

Referenced by GetECross2(), Init(), MakeIntegral(), MakeMaximum(), TRadCor(), and ~TRadCor().

bool* TRadCor::fInList [protected]

Definition at line 25 of file TRadCor.h.

Referenced by MakeCrossSection(), SetPartList(), TRadCor(), and ~TRadCor().

bool TRadCor::fIsSmear [protected]

Definition at line 31 of file TRadCor.h.

Referenced by SetSmear(), SetSpecialCase(), and TRadCor().

TVCrossPart* TRadCor::fMatrix [protected]

Definition at line 26 of file TRadCor.h.

Referenced by GetCrossPart(), GetEvent(), Init(), MakeEvent(), MakeIntegral(), MakeMaximum(), SetSpecialCase(), and TRadCor().

double* TRadCor::fMax [protected]

Definition at line 11 of file TRadCor.h.

Referenced by GetMax(), Init(), MakeEvent(), MakeIntegral(), MakeMaximum(), TRadCor(), and ~TRadCor().

double* TRadCor::fMin [protected]

Definition at line 12 of file TRadCor.h.

Referenced by GetMin(), Init(), MakeMaximum(), TRadCor(), and ~TRadCor().

unsigned int* TRadCor::fN [protected]

Definition at line 23 of file TRadCor.h.

Referenced by GetN(), Init(), MakeIntegral(), TRadCor(), and ~TRadCor().

unsigned int TRadCor::fNEvents [protected]

Definition at line 10 of file TRadCor.h.

Referenced by MakeIntegral(), MakeMaximum(), SetNEvents(), and TRadCor().

bool TRadCor::fNew [protected]

Definition at line 27 of file TRadCor.h.

Referenced by SetMType(), and TRadCor().

unsigned int TRadCor::fNPart [protected]

Definition at line 9 of file TRadCor.h.

Referenced by GetNPart(), Init(), MakeAllIntegrals(), MakeAllMaximums(), MakeCrossSection(), MakePart(), SetPartList(), and TRadCor().

unsigned int* TRadCor::fNSim [protected]

Definition at line 22 of file TRadCor.h.

Referenced by GetNSim(), Init(), MakeIntegral(), TRadCor(), and ~TRadCor().

double* TRadCor::fPart [protected]

Definition at line 21 of file TRadCor.h.

Referenced by Init(), MakeEvent(), MakePart(), TRadCor(), and ~TRadCor().

double* TRadCor::fSigma [protected]

Definition at line 14 of file TRadCor.h.

Referenced by Init(), TRadCor(), and ~TRadCor().

double* TRadCor::fSM [protected]

Definition at line 19 of file TRadCor.h.

Referenced by Init(), MakeIntegral(), MakeMaximum(), TRadCor(), and ~TRadCor().

double* TRadCor::fSM2 [protected]

Definition at line 20 of file TRadCor.h.

Referenced by Init(), MakeIntegral(), MakeMaximum(), TRadCor(), and ~TRadCor().

double TRadCor::fTheta_Aver_0 [protected]

Definition at line 28 of file TRadCor.h.

Referenced by Init(), and SetSpecialCase().

unsigned int* TRadCor::fWN [protected]

Definition at line 24 of file TRadCor.h.

Referenced by GetWN(), Init(), MakeIntegral(), MakeMaximum(), TRadCor(), and ~TRadCor().


Generated on Tue Nov 29 23:36:09 2016 for BOSS_7.0.2 by  doxygen 1.4.7