Changeset 2242
- Timestamp:
- 06/27/03 12:25:50 (21 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r2241 r2242 1 1 -*-*- END OF LINE -*-*- 2 2 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 3 13 2003/06/26: Abelardo Moralejo 14 4 15 * macros/CT1EgyEst.C 5 16 - Added to the argument list of CT1EEst the binnings in theta -
trunk/MagicSoft/Mars/mhistmc/MHMcCT1CollectionArea.cc
r2173 r2242 240 240 // events in each energy bin. 241 241 // 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 // 242 252 243 253 for (Int_t thetabin = 1; thetabin <= fHistAll->GetNbinsY(); thetabin++) … … 256 266 numevts1 = 0; numevts2 = 0; 257 267 258 if (theta > 14 && theta < 16) // 15 deg268 if (theta > 8 && theta < 9) // 8.75 deg 259 269 { 260 270 r1 = 0.; … … 307 317 numevts1 = 38415.; 308 318 } 309 else if (theta > 4 4 && theta < 46) // 45degrees319 else if (theta > 45 && theta < 47) // 46 degrees 310 320 { 311 321 r1 = 0.;
Note:
See TracChangeset
for help on using the changeset viewer.