Changeset 2242


Ignore:
Timestamp:
06/27/03 12:25:50 (21 years ago)
Author:
moralejo
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r2241 r2242  
    11                                                 -*-*- END OF LINE -*-*-
    22
     3 2003/06/27: Abelardo Moralejo
     4
     5  * mhistmc/MHMcCT1CollectionArea.cc
     6    - Added comments, changed theta angle corresponding to first bin to
     7      adapt it to new standard theta-bin definition. This was the reason
     8      for the missing area at low theta.
     9
     10  * macros/CT1collectionArea.C
     11    - Changed theta binning of collection area histogram.
     12
    313 2003/06/26: Abelardo Moralejo
     14
    415  * macros/CT1EgyEst.C
    516    - Added to the argument list of CT1EEst the binnings in theta
  • trunk/MagicSoft/Mars/mhistmc/MHMcCT1CollectionArea.cc

    r2173 r2242  
    240240  // events in each energy bin.
    241241  //
     242  // The theta angle with which the MC data (from D. Kranich) were produced
     243  // is not exactly the center of the theta bins we are using (the bin limits
     244  // should be 0.0, 17.5, 23.5, 29.5, 35.5, 42., 50.). The theta variable in
     245  // the MC root file has nevertheless been changed (W.Wittek) to correspond
     246  // to the centers of these bins. Only in the first bin is the difference big:
     247  // the data were produced at theta = 15 degrees, whreas the bin center is at
     248  // 8.75 degrees. Howeverm at such low z.a. the shower characteristics change
     249  // very slowly with theta.
     250  //
     251  //
    242252
    243253  for (Int_t thetabin = 1; thetabin <= fHistAll->GetNbinsY(); thetabin++)
     
    256266      numevts1 = 0; numevts2 = 0;
    257267
    258       if (theta > 14 && theta < 16)   // 15 deg
     268      if (theta > 8 && theta < 9)   // 8.75 deg
    259269        {
    260270          r1 = 0.;
     
    307317          numevts1 = 38415.;
    308318        }
    309       else if (theta > 44 && theta < 46)  // 45 degrees
     319      else if (theta > 45 && theta < 47)  // 46 degrees
    310320        {
    311321          r1 = 0.;
Note: See TracChangeset for help on using the changeset viewer.