February 24, 2009 Physics

From GlueXWiki
Jump to: navigation, search

Time: 11:00 EST/10:00 CST

  • ESNET Number 8542553
  • Phone:
    • +1-800-377-8846 : US
    • +1-888-276-7715 : Canada
    • +1-302-709-8424 : International
    • then enter participant code: 39527048# (remember the "#")

To do list from last meeting

  • Next Steps:
  1. look at the a2 mass peak - adjust cuts on the eta and pi0 masses
  2. introduce Pythia background - skim off the wanted events by cutting on the total neutral energy (but we need to record the total number of events before skimming) - hd_filter is a good program example
  3. cut on eta and pi0 masses, then look at the effect on the different angular distributions (i.e. Gottfried-Jackson angles, etc.)
  • Also:
  1. look at difference between reconstructed and generated z position for less than 65 cm
  2. look at single photon reconstruction efficiencies
  3. adjust the error matrix for the BCAL (look in PID/DPhoton_factory.cc)


Documents to Review

Tentative Agenda

  • Questions:
  1. I can loop over all the photons, add their 4-momenta and calculate the mass of the a2(1320) and it gives me something reasonable, but how do I go about saying which photons were Pi0's and Eta's in order to cut on their mass? I think this is more code that needs to be written. Also, in the reconstruction code, there doesn't seem to be any way of saying that if 2 photons are pions with high confidence that the others are most likely Etas. And then adding their 4-momenta and calculating an A2 mass from that.
  2. What's the large hump to the right of the a2(1320) peak below? (1 million A2 decays were thrown.)


PhotMtot.png

The following code creates the data set for the above plot. No cuts have been applied.


vector<const DPhoton*> photV;
   loop->Get( photV );
       nPhot = photV.size();
       assert (nPhot < PID_PHOT_MAX) ;
       nHits=0;
       Etot=0;
       DLorentzVector Gtot(0,0,0,0);
       for( vector<const DPhoton*>::const_iterator photon = photV.begin();  photon != photV.end(); ++photon ){
                   Gtot += (**photon).lorentzMomentum();
       }
       photMtot = Gtot.M();

Minutes

  • Answers:
  1. Create an array or list of pi0s and eta and add the chi squared values of each fit from the TwoGamma fit. Choose the pair of eta and pi0 with the smallest Chi squared to be the best pair and add the 4-momentum of the photons from these. The invariant mass of the A@ can be found from these.
  2. The hump on the right is most likely due to the addition of protons showers appearing as extra mass.