BhabhaPreSelect Class Reference

#include <BhabhaPreSelect.h>

List of all members.

Public Member Functions

 BhabhaPreSelect (const std::string &name, ISvcLocator *pSvcLocator)
StatusCode initialize ()
StatusCode execute ()
StatusCode finalize ()
bool WhetherSector (double, double=0., double=CLHEP::twopi)
int selectedType () const
int selectedTrkID1 () const
int selectedTrkID2 () const

Private Member Functions

RecEmcShowermatched (int TrkID) const
double Angle2ClosestShower (int ShowerID)

Private Attributes

double m_vr0cut
double m_vz0cut
double m_lowEnergyShowerCut
double m_highEnergyShowerCut
double m_matchThetaCut
double m_matchPhiCut
double m_highMomentumCut
double m_EoPMaxCut
double m_EoPMinCut
double m_minAngShEnergyCut
double m_minAngCut
double m_acolliCut
double m_eNormCut
double m_pNormCut
int m_BarrelOrEndcap
double m_oneProngMomentumCut
bool m_output
int m_selectedType
int m_selectedTrkID1
int m_selectedTrkID2
long int m_events
long int m_rejected
int m_oneProngsSelected
int m_twoProngsMatchedSelected
int m_twoProngsOneMatchedSelected
NTuple::Tuple * m_tuple1
NTuple::Item< double > m_trk1_p
NTuple::Item< double > m_trk1_theta
NTuple::Item< double > m_trk1_phi
NTuple::Item< double > m_sh1_ene
NTuple::Item< double > m_sh1_theta
NTuple::Item< double > m_sh1_phi
NTuple::Item< double > m_trk2_p
NTuple::Item< double > m_trk2_theta
NTuple::Item< double > m_trk2_phi
NTuple::Item< double > m_sh2_ene
NTuple::Item< double > m_sh2_theta
NTuple::Item< double > m_sh2_phi
NTuple::Item< double > m_di_the
NTuple::Item< double > m_di_phi
NTuple::Item< double > m_etot
NTuple::Item< long > m_mdc_hit1
NTuple::Item< long > m_mdc_hit2
NTuple::Item< double > m_pNorm
NTuple::Item< double > m_eNorm
NTuple::Item< double > m_acolli
NTuple::Tuple * m_tuple2
NTuple::Item< double > m_sh_ene
NTuple::Item< double > m_sh_theta
NTuple::Item< double > m_sh_phi

Static Private Attributes

static int idmax [43]


Detailed Description

Definition at line 11 of file BhabhaPreSelect.h.


Constructor & Destructor Documentation

BhabhaPreSelect::BhabhaPreSelect ( const std::string name,
ISvcLocator *  pSvcLocator 
)

Definition at line 48 of file BhabhaPreSelect.cxx.

References m_BarrelOrEndcap, and m_output.

00048                                                                                 :
00049   Algorithm(name, pSvcLocator) {
00050 
00051     //Declare the properties  
00052 
00053     declareProperty ("BarrelOrEndcap", m_BarrelOrEndcap = 1);
00054     declareProperty ("Output", m_output = false);
00055     //cout<<"  BarrelOrEndcap  "<<m_BarrelOrEndcap<<endl;
00056 
00057   }


Member Function Documentation

double BhabhaPreSelect::Angle2ClosestShower ( int  ShowerID  )  [private]

StatusCode BhabhaPreSelect::execute (  ) 

Definition at line 129 of file BhabhaPreSelect.cxx.

References abs, EmcID::barrel_ec(), Bes_Common::DEBUG, calibUtil::ERROR, EventModel::EvtRec::EvtRecEvent, EventModel::EvtRec::EvtRecTrackCol, Bes_Common::FATAL, genRecEmupikp::i, idmax, Bes_Common::INFO, MdcID::layer(), m_BarrelOrEndcap, m_di_phi, m_di_the, m_etot, m_events, m_mdc_hit1, m_mdc_hit2, m_output, m_sh1_ene, m_sh1_phi, m_sh1_theta, m_sh2_ene, m_sh2_phi, m_sh2_theta, m_tuple1, max, min, msgSvc(), phi1, phi2, EmcID::phi_module(), pi, PI, selected, EmcID::theta_module(), WhetherSector(), and MdcID::wire().

00129                                     {
00130 
00131   MsgStream log(msgSvc(), name());
00132   log << MSG::INFO << "in execute()" << endreq;
00133 
00134   SmartDataPtr<Event::EventHeader> eventHeader(eventSvc(),"/Event/EventHeader");
00135   //if(!eventHeader)
00136   //{
00137   //  cout<<"  eventHeader  "<<endl;
00138   //  return StatusCode::FAILURE;
00139   //}
00140 
00141   int run=eventHeader->runNumber();
00142   int event=eventHeader->eventNumber();
00143   //cout<<"  event  "<<event<<endl;
00144   if(event%1000==0)   cout<<"  run,event:  "<<run<<","<<event<<endl;
00145 
00146   SmartDataPtr<EvtRecEvent> evtRecEvent(eventSvc(), EventModel::EvtRec::EvtRecEvent);
00147   if(!evtRecEvent ) {
00148     cout<<"  evtRecEvent  "<<endl;
00149     return StatusCode::FAILURE;
00150   }
00151 
00152   log << MSG::DEBUG <<"ncharg, nneu, tottks = " 
00153     << evtRecEvent->totalCharged() << " , "
00154     << evtRecEvent->totalNeutral() << " , "
00155     << evtRecEvent->totalTracks() <<endreq;
00156   SmartDataPtr<EvtRecTrackCol> evtRecTrkCol(eventSvc(),  EventModel::EvtRec::EvtRecTrackCol);
00157   if(!evtRecTrkCol){
00158     cout<<"  evtRecTrkCol  "<<endl;
00159     return StatusCode::FAILURE;
00160   }
00161 
00162   m_events++;
00163   setFilterPassed(false);
00164 
00165   Vint iGood;
00166   iGood.clear();
00167 
00168   double ene5x5,theta,phi,eseed;
00169   double showerX,showerY,showerZ;
00170   long int thetaIndex,phiIndex;
00171 
00172   RecEmcID showerId;
00173   unsigned int npart;
00174 
00175   Vint ipip, ipim;
00176   ipip.clear();
00177   ipim.clear();
00178   Vp4 ppip, ppim;
00179   ppip.clear();
00180   ppim.clear();
00181 
00182   vector<RecEmcShower* >  GoodShowers;
00183   GoodShowers.clear();
00184   double etot=0;
00185   for(int i = 0; i< evtRecEvent->totalTracks(); i++) {
00186     if(i>=evtRecTrkCol->size()) break;
00187     EvtRecTrackIterator itTrk=evtRecTrkCol->begin() + i;
00188     if((*itTrk)->isEmcShowerValid()) {
00189       RecEmcShower *theShower = (*itTrk)->emcShower();
00190       etot+=theShower->e5x5();
00191       showerId = theShower->getShowerId();
00192       npart = EmcID::barrel_ec(showerId);
00193       ene5x5=theShower->e5x5(); 
00194       thetaIndex=EmcID::theta_module(showerId);
00195       phiIndex=EmcID::phi_module(showerId);  
00196       if (ene5x5>0.4&&ene5x5<4&&npart==1&&(m_BarrelOrEndcap==1)){
00197         GoodShowers.push_back(theShower); 
00198         iGood.push_back((*itTrk)->trackId());
00199       }
00200       else if (ene5x5>0.4&&ene5x5<4&&(npart==2||npart==0)&&(m_BarrelOrEndcap==2)){
00201         GoodShowers.push_back(theShower); 
00202         iGood.push_back((*itTrk)->trackId());
00203       }
00204       else if (ene5x5>0.4&&ene5x5<4&&(m_BarrelOrEndcap==0)){
00205         GoodShowers.push_back(theShower); 
00206         iGood.push_back((*itTrk)->trackId());
00207       }
00208     }
00209     // good photon cut will be set here
00210   }
00211   // Finish Good Photon Selection
00212   //
00213 
00214   double  MaxE(0), MaxPhi, MaxThe;
00215   int MaxId;
00216   double  SecE(0), SecPhi, SecThe;
00217   for(int i=0; i<GoodShowers.size(); i++) {
00218     RecEmcShower *theShower = GoodShowers[i];
00219     double eraw = theShower->energy();
00220     if(eraw> MaxE) {
00221       MaxId =i;
00222       MaxE =eraw;
00223       MaxPhi = theShower->phi();
00224       MaxThe = theShower->theta();
00225     }
00226   }
00227   for(int i=0; i<GoodShowers.size(); i++) {
00228     RecEmcShower *theShower = GoodShowers[i];
00229     double eraw = theShower->energy();
00230     if(i!=MaxId&&eraw>SecE) {
00231       SecE =eraw;
00232       SecPhi = theShower->phi();
00233       SecThe = theShower->theta();
00234     }
00235   }
00236 
00237   double dphi = (fabs(MaxPhi-SecPhi)-PI)*180./PI;
00238   double dthe = (fabs(MaxThe+SecThe)-PI)*180./PI;
00239 
00240   int total1 = 0;  //mdc hit
00241   int total2 = 0;  //mdc hit
00242   if(GoodShowers.size()>=2 && MaxE>1.0 && abs(dthe)<3
00243       && ((dphi>-25&&dphi<-4)||(dphi>2&&dphi<20)) && etot>2.7) {
00244 
00245     double phi1 = MaxPhi<0 ? MaxPhi+CLHEP::twopi : MaxPhi;
00246     double phi2 = SecPhi<0 ? SecPhi+CLHEP::twopi : SecPhi;
00247 
00248     //Define sector (phi11,phi12) and (phi21,phi22)
00249     double phi11=min(phi1,phi2);
00250     double phi22=max(phi1,phi2);
00251     double phi12=(phi11+phi22-CLHEP::pi)*0.5;
00252     double phi21=(phi11+phi22+CLHEP::pi)*0.5;
00253     if(phi12<0.) phi12 += CLHEP::twopi;
00254     if(phi21>CLHEP::twopi) phi21 -= CLHEP::twopi;
00255 
00256     SmartDataPtr<MdcDigiCol> mdcDigiCol(evtSvc(), "/Event/Digi/MdcDigiCol");
00257     if (!mdcDigiCol) {
00258       log << MSG::FATAL << "Could not find MdcDigiCol!" << endreq;
00259       return StatusCode::FAILURE;
00260     }
00261     int hitnum = mdcDigiCol->size();
00262     for (int i = 0;i< hitnum;i++ ) {
00263       MdcDigi* digi= dynamic_cast<MdcDigi*>(mdcDigiCol->containedObject(i));
00264       double time =  digi->getTimeChannel();
00265       double charge = digi->getChargeChannel();
00266       if (time == 0x7FFFFFFF || charge == 0x7FFFFFFF) continue;
00267       Identifier id(digi->identify());
00268       unsigned int iphi=MdcID::wire(id);
00269       unsigned int ilayer=MdcID::layer(id);
00270       if(ilayer>=43)
00271         log << MSG::ERROR << "MDC(" << ilayer <<","<<iphi <<")"<<endreq;
00272       double phi=CLHEP::twopi*iphi/idmax[ilayer];
00273       if(WhetherSector(phi,phi11,phi12)) total1++;
00274       else if(WhetherSector(phi,phi21,phi22)) total2++;
00275       //cout<<"phi="<<phi<<",phi11="<<phi11<<",phi12="<<phi12
00276         //<<",phi21="<<phi21<<",phi22="<<phi22<<endl;
00277     }
00278     //cout<<"total1="<<total1<<"total2="<<total2<<endl;
00279     if ( (m_BarrelOrEndcap==1&&total1>15 &&total2>15)
00280         || (m_BarrelOrEndcap!=1&&total1>5 &&total2>5) ) {
00281       setFilterPassed(true);
00282       selected++;
00283     }
00284   }
00285 
00286   if(m_output) {
00287     m_etot=etot;
00288     m_mdc_hit1=total1;
00289     m_mdc_hit2=total2;
00290     m_sh1_ene = MaxE;
00291     m_sh1_theta = MaxThe;
00292     m_sh1_phi = MaxPhi;
00293     m_sh2_ene = SecE;
00294     m_sh2_theta = SecThe;
00295     m_sh2_phi = SecPhi;
00296     m_di_phi = dphi;
00297     m_di_the = dthe;
00298     m_tuple1->write();
00299   }
00300 
00301   return StatusCode::SUCCESS;
00302 
00303 }

StatusCode BhabhaPreSelect::finalize (  ) 

Definition at line 306 of file BhabhaPreSelect.cxx.

References Bes_Common::INFO, m_events, m_oneProngsSelected, m_rejected, m_twoProngsMatchedSelected, m_twoProngsOneMatchedSelected, msgSvc(), and selected.

00306                                      {
00307 
00308   MsgStream log(msgSvc(), name());
00309   log << MSG::INFO << "in finalize()" << endmsg;
00310   cout<<"m_events "<<m_events<<endl;
00311   cout<<" selected "<<selected<<endl;
00312   cout<<"m_rejected "<<m_rejected<<endl;
00313   cout<<"m_oneProngsSelected "<<m_oneProngsSelected<<endl;
00314   cout<<"m_twoProngsMatchedSelected "<<m_twoProngsMatchedSelected<<endl;
00315   cout<<"m_twoProngsOneMatchedSelected "<<m_twoProngsOneMatchedSelected<<endl;
00316 
00317   return StatusCode::SUCCESS;
00318 }

StatusCode BhabhaPreSelect::initialize (  ) 

Definition at line 60 of file BhabhaPreSelect.cxx.

References calibUtil::ERROR, Bes_Common::INFO, m_acolli, m_BarrelOrEndcap, m_di_phi, m_di_the, m_etot, m_events, m_mdc_hit1, m_mdc_hit2, m_oneProngsSelected, m_output, m_rejected, m_selectedTrkID1, m_selectedTrkID2, m_sh1_ene, m_sh1_phi, m_sh1_theta, m_sh2_ene, m_sh2_phi, m_sh2_theta, m_sh_ene, m_sh_phi, m_sh_theta, m_tuple1, m_tuple2, m_twoProngsMatchedSelected, m_twoProngsOneMatchedSelected, msgSvc(), and ntupleSvc().

00060                                       {
00061   MsgStream log(msgSvc(), name());
00062 
00063   log << MSG::INFO << "in initialize()" << endmsg;
00064   cout<<"  BarrelOrEndcap  "<<m_BarrelOrEndcap<<endl;
00065 
00066   if(m_output) {
00067     StatusCode status;
00068     NTuplePtr nt1(ntupleSvc(), "FILE1/bhabha");
00069     if ( nt1 ) m_tuple1 = nt1;
00070     else {
00071       m_tuple1 = ntupleSvc()->book ("FILE1/bhabha", CLID_ColumnWiseTuple, "N-Tuple example");
00072       if ( m_tuple1 )    {
00073         status = m_tuple1->addItem ("sh1_ene",m_sh1_ene);
00074         status = m_tuple1->addItem ("sh1_theta", m_sh1_theta);
00075         status = m_tuple1->addItem ("sh1_phi", m_sh1_phi);
00076         status = m_tuple1->addItem ("sh2_ene",m_sh2_ene);
00077         status = m_tuple1->addItem ("sh2_theta", m_sh2_theta);
00078         status = m_tuple1->addItem ("sh2_phi", m_sh2_phi);
00079         status = m_tuple1->addItem ("di_phi", m_di_phi);
00080         status = m_tuple1->addItem ("di_the", m_di_the);
00081         status = m_tuple1->addItem ("acolli", m_acolli);
00082         status = m_tuple1->addItem ("etot", m_etot);
00083         status = m_tuple1->addItem ("mdc_hit1", m_mdc_hit1);
00084         status = m_tuple1->addItem ("mdc_hit2", m_mdc_hit2);
00085 
00086       }
00087       else    { 
00088         log << MSG::ERROR << "    Cannot book N-tuple:" << long(m_tuple1) << endmsg;
00089         return StatusCode::FAILURE;
00090       }
00091     }
00092 
00093 
00094     NTuplePtr nt2(ntupleSvc(), "FILE1/bha1");
00095     if ( nt2 ) m_tuple2 = nt2;
00096     else {
00097       m_tuple2 = ntupleSvc()->book ("FILE1/bha1", CLID_ColumnWiseTuple, "N-Tuple example");
00098       if ( m_tuple2 )    {
00099         status = m_tuple2->addItem ("sh_ene",m_sh_ene);
00100         status = m_tuple2->addItem ("sh_theta", m_sh_theta);
00101         status = m_tuple2->addItem ("sh_phi", m_sh_phi);
00102       }
00103       else    { 
00104         log << MSG::ERROR << "    Cannot book N-tuple:" << long(m_tuple2) << endmsg;
00105         return StatusCode::FAILURE;
00106       }
00107     }
00108   }
00109 
00110 
00111   //
00112   //--------end of book--------
00113   //
00114 
00115   m_rejected=0;
00116   m_events=0;
00117   m_oneProngsSelected=0;
00118   m_twoProngsMatchedSelected=0;
00119   m_twoProngsOneMatchedSelected=0;
00120   m_selectedTrkID1=999;
00121   m_selectedTrkID2=999;
00122 
00123   log << MSG::INFO << "successfully return from initialize()" <<endmsg;
00124   return StatusCode::SUCCESS;
00125 
00126 }

RecEmcShower* BhabhaPreSelect::matched ( int  TrkID  )  const [private]

int BhabhaPreSelect::selectedTrkID1 (  )  const [inline]

Definition at line 25 of file BhabhaPreSelect.h.

References m_selectedTrkID1.

00026     {
00027       return m_selectedTrkID1;
00028     }

int BhabhaPreSelect::selectedTrkID2 (  )  const [inline]

Definition at line 29 of file BhabhaPreSelect.h.

References m_selectedTrkID2.

00030     {
00031       return m_selectedTrkID2;
00032     }

int BhabhaPreSelect::selectedType (  )  const [inline]

Definition at line 21 of file BhabhaPreSelect.h.

References m_selectedType.

00022     {
00023       return m_selectedType; 
00024     }

bool BhabhaPreSelect::WhetherSector ( double  ,
double  = 0.,
double  = CLHEP::twopi 
)

Definition at line 320 of file BhabhaPreSelect.cxx.

References max, min, phi1, phi2, and pi.

Referenced by execute().

00320                                                                   {
00321   double phi1=min(ph1,ph2);
00322   double phi2=max(ph1,ph2);
00323   double delta=0.0610865; //3.5*3.1415926/180.
00324   if((phi2-phi1)<CLHEP::pi){
00325     phi1 -=delta;
00326     phi2 +=delta;
00327     if(phi1<0.) phi1 += CLHEP::twopi;
00328     if(phi2>CLHEP::twopi) phi2 -= CLHEP::twopi;
00329     double tmp1=min(phi1,phi2);
00330     double tmp2=max(phi1,phi2);
00331     phi1=tmp1;
00332     phi2=tmp2;
00333   }
00334   else{
00335     phi1 +=delta;
00336     phi2 -=delta;
00337   }
00338   if((phi2-phi1)<CLHEP::pi){
00339     if(ph<=phi2&&ph>=phi1) return true;
00340     else   return false;
00341   }
00342   else{
00343     if(ph>=phi2||ph<=phi1) return true;
00344     else   return false;
00345   }
00346 }


Member Data Documentation

int BhabhaPreSelect::idmax [static, private]

Initial value:

{40,44,48,56,64,72,80,80,76,76,
  88,88,100,100,112,112,128,128,140,140,
  160,160,160,160,176,176,176,176,208,208,
  208,208,240,240,240,240,256,256,256,256,
  288,288,288}

Definition at line 57 of file BhabhaPreSelect.h.

Referenced by execute().

NTuple::Item<double> BhabhaPreSelect::m_acolli [private]

Definition at line 102 of file BhabhaPreSelect.h.

Referenced by initialize().

double BhabhaPreSelect::m_acolliCut [private]

Definition at line 52 of file BhabhaPreSelect.h.

int BhabhaPreSelect::m_BarrelOrEndcap [private]

Definition at line 55 of file BhabhaPreSelect.h.

Referenced by BhabhaPreSelect(), execute(), and initialize().

NTuple::Item<double> BhabhaPreSelect::m_di_phi [private]

Definition at line 95 of file BhabhaPreSelect.h.

Referenced by execute(), and initialize().

NTuple::Item<double> BhabhaPreSelect::m_di_the [private]

Definition at line 94 of file BhabhaPreSelect.h.

Referenced by execute(), and initialize().

NTuple::Item<double> BhabhaPreSelect::m_eNorm [private]

Definition at line 101 of file BhabhaPreSelect.h.

double BhabhaPreSelect::m_eNormCut [private]

Definition at line 53 of file BhabhaPreSelect.h.

double BhabhaPreSelect::m_EoPMaxCut [private]

Definition at line 48 of file BhabhaPreSelect.h.

double BhabhaPreSelect::m_EoPMinCut [private]

Definition at line 49 of file BhabhaPreSelect.h.

NTuple::Item<double> BhabhaPreSelect::m_etot [private]

Definition at line 97 of file BhabhaPreSelect.h.

Referenced by execute(), and initialize().

long int BhabhaPreSelect::m_events [private]

number of events passed

Definition at line 68 of file BhabhaPreSelect.h.

Referenced by execute(), finalize(), and initialize().

double BhabhaPreSelect::m_highEnergyShowerCut [private]

Definition at line 43 of file BhabhaPreSelect.h.

double BhabhaPreSelect::m_highMomentumCut [private]

Definition at line 47 of file BhabhaPreSelect.h.

double BhabhaPreSelect::m_lowEnergyShowerCut [private]

Definition at line 42 of file BhabhaPreSelect.h.

double BhabhaPreSelect::m_matchPhiCut [private]

Definition at line 45 of file BhabhaPreSelect.h.

double BhabhaPreSelect::m_matchThetaCut [private]

Definition at line 44 of file BhabhaPreSelect.h.

NTuple::Item<long> BhabhaPreSelect::m_mdc_hit1 [private]

Definition at line 98 of file BhabhaPreSelect.h.

Referenced by execute(), and initialize().

NTuple::Item<long> BhabhaPreSelect::m_mdc_hit2 [private]

Definition at line 99 of file BhabhaPreSelect.h.

Referenced by execute(), and initialize().

double BhabhaPreSelect::m_minAngCut [private]

Definition at line 51 of file BhabhaPreSelect.h.

double BhabhaPreSelect::m_minAngShEnergyCut [private]

Definition at line 50 of file BhabhaPreSelect.h.

double BhabhaPreSelect::m_oneProngMomentumCut [private]

Definition at line 59 of file BhabhaPreSelect.h.

int BhabhaPreSelect::m_oneProngsSelected [private]

Definition at line 73 of file BhabhaPreSelect.h.

Referenced by finalize(), and initialize().

bool BhabhaPreSelect::m_output [private]

Definition at line 61 of file BhabhaPreSelect.h.

Referenced by BhabhaPreSelect(), execute(), and initialize().

NTuple::Item<double> BhabhaPreSelect::m_pNorm [private]

Definition at line 100 of file BhabhaPreSelect.h.

double BhabhaPreSelect::m_pNormCut [private]

Definition at line 54 of file BhabhaPreSelect.h.

long int BhabhaPreSelect::m_rejected [private]

number of events rejected

Definition at line 71 of file BhabhaPreSelect.h.

Referenced by finalize(), and initialize().

int BhabhaPreSelect::m_selectedTrkID1 [private]

Definition at line 65 of file BhabhaPreSelect.h.

Referenced by initialize(), and selectedTrkID1().

int BhabhaPreSelect::m_selectedTrkID2 [private]

Definition at line 66 of file BhabhaPreSelect.h.

Referenced by initialize(), and selectedTrkID2().

int BhabhaPreSelect::m_selectedType [private]

selected event type

Definition at line 64 of file BhabhaPreSelect.h.

Referenced by selectedType().

NTuple::Item<double> BhabhaPreSelect::m_sh1_ene [private]

Definition at line 84 of file BhabhaPreSelect.h.

Referenced by execute(), and initialize().

NTuple::Item<double> BhabhaPreSelect::m_sh1_phi [private]

Definition at line 86 of file BhabhaPreSelect.h.

Referenced by execute(), and initialize().

NTuple::Item<double> BhabhaPreSelect::m_sh1_theta [private]

Definition at line 85 of file BhabhaPreSelect.h.

Referenced by execute(), and initialize().

NTuple::Item<double> BhabhaPreSelect::m_sh2_ene [private]

Definition at line 91 of file BhabhaPreSelect.h.

Referenced by execute(), and initialize().

NTuple::Item<double> BhabhaPreSelect::m_sh2_phi [private]

Definition at line 93 of file BhabhaPreSelect.h.

Referenced by execute(), and initialize().

NTuple::Item<double> BhabhaPreSelect::m_sh2_theta [private]

Definition at line 92 of file BhabhaPreSelect.h.

Referenced by execute(), and initialize().

NTuple::Item<double> BhabhaPreSelect::m_sh_ene [private]

Definition at line 104 of file BhabhaPreSelect.h.

Referenced by initialize().

NTuple::Item<double> BhabhaPreSelect::m_sh_phi [private]

Definition at line 106 of file BhabhaPreSelect.h.

Referenced by initialize().

NTuple::Item<double> BhabhaPreSelect::m_sh_theta [private]

Definition at line 105 of file BhabhaPreSelect.h.

Referenced by initialize().

NTuple::Item<double> BhabhaPreSelect::m_trk1_p [private]

Definition at line 81 of file BhabhaPreSelect.h.

NTuple::Item<double> BhabhaPreSelect::m_trk1_phi [private]

Definition at line 83 of file BhabhaPreSelect.h.

NTuple::Item<double> BhabhaPreSelect::m_trk1_theta [private]

Definition at line 82 of file BhabhaPreSelect.h.

NTuple::Item<double> BhabhaPreSelect::m_trk2_p [private]

Definition at line 88 of file BhabhaPreSelect.h.

NTuple::Item<double> BhabhaPreSelect::m_trk2_phi [private]

Definition at line 90 of file BhabhaPreSelect.h.

NTuple::Item<double> BhabhaPreSelect::m_trk2_theta [private]

Definition at line 89 of file BhabhaPreSelect.h.

NTuple::Tuple* BhabhaPreSelect::m_tuple1 [private]

Definition at line 80 of file BhabhaPreSelect.h.

Referenced by execute(), and initialize().

NTuple::Tuple* BhabhaPreSelect::m_tuple2 [private]

Definition at line 103 of file BhabhaPreSelect.h.

Referenced by initialize().

int BhabhaPreSelect::m_twoProngsMatchedSelected [private]

Definition at line 74 of file BhabhaPreSelect.h.

Referenced by finalize(), and initialize().

int BhabhaPreSelect::m_twoProngsOneMatchedSelected [private]

Definition at line 75 of file BhabhaPreSelect.h.

Referenced by finalize(), and initialize().

double BhabhaPreSelect::m_vr0cut [private]

Definition at line 39 of file BhabhaPreSelect.h.

double BhabhaPreSelect::m_vz0cut [private]

Definition at line 40 of file BhabhaPreSelect.h.


Generated on Tue Nov 29 23:17:55 2016 for BOSS_7.0.2 by  doxygen 1.4.7