Changeset 8671
- Timestamp:
- 08/15/07 21:11:54 (17 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r8670 r8671 39 39 * mjobs/MJCut.cc: 40 40 - show distribution of observation time for on and off data 41 42 * mjoptim/MJOptimizeCuts.cc, mjoptim/MJOptimizeDisp.cc, 43 mjoptim/MJOptimizeEnergy.cc: 44 - added display to output 45 46 * macros/optim/optimenergy.C, macros/optim/optimonoff.C, 47 macros/optim/optimwobble.C: 48 - added example how to write output file 49 41 50 42 51 -
trunk/MagicSoft/Mars/NEWS
r8670 r8671 132 132 + PostCleanType: 3 133 133 134 - star/ganymed: The old spark-cuts have been replaced by new ones.135 These new spark cuts have been cross checked with the sequences136 84720 (before splitter), 101041 (after splitter) and 223539 (new137 FADCs). In all cases they seperate pretty well, but of course not138 perfect. Monte Carlos have suggested to tighten the cuts a little139 bit further at low sizes. This has been done.140 141 134 - ganymed: The old hadronness and size cuts have gotten new indices 142 135 (10, 11). The old indices 8 and 9 now mean an additional condition … … 170 163 (Rem: ThetaSqN is no longer needed) 171 164 172 - ganymed: is now storing the events of all source (on- and off-173 source positions )even in the case of more than one off-source165 - ganymed: is now storing the events of all (on- and off-) 166 source positions even in the case of more than one off-source 174 167 position. This should allow sponde to work properly and the 175 168 energy estimation is done correctly in all cases (without any … … 195 188 paremtrization set parameter 8 to 0. 196 189 197 - ganymed: IMPORTANT - The spark cuts have been removed from the 198 resource files because there is currently no proper known 199 cut. Whenever you do an analysis you have to find proper cuts 200 yourself! 190 - star/ganymed: The old spark-cuts have been replaced by new ones. 191 These new spark cuts have been cross checked with the sequences 192 84720 (before splitter), 101041 (after splitter) and 223539 (new 193 FADCs). In all cases they seperate pretty well, but of course not 194 perfect. Monte Carlos have suggested to tighten the cuts a little 195 bit further at low sizes. This has been done. 196 197 - ganymed: IMPORTANT - The spark cuts have been changed to match 198 all available data more or less well. This might mean that for 199 YOUR data there are still sparks visible. 200 Whenever you do an analysis you have to make sure that NO sparks 201 survive your cuts! 201 202 202 203 - ganymed: The distribution of observation time versus zenith -
trunk/MagicSoft/Mars/macros/optim/optimenergy.C
r7409 r8671 46 46 */ 47 47 48 // opt.SetPathOut("optimenergy.root"); 48 49 opt.RunEnergy("ganymedmcpart.root", r); 49 50 } -
trunk/MagicSoft/Mars/macros/optim/optimonoff.C
r8113 r8671 41 41 opt.SetDisplay(d); 42 42 43 // opt.SetPathOut("optimonoff.root"); 43 44 opt.RunOnOff("ganymed00000001-summary.root", &cuts, &fit); 44 45 } -
trunk/MagicSoft/Mars/macros/optim/optimwobble.C
r7533 r8671 47 47 opt.SetDisplay(d); 48 48 49 // opt.SetPathOut("optimwobble.root"); 49 50 opt.RunOnOff("wobblelza-abs.root", &cuts, &fit); 50 51 } -
trunk/MagicSoft/Mars/mjoptim/MJOptimizeCuts.cc
r8644 r8671 331 331 TObjArray cont; 332 332 cont.Add(&contin); 333 if (fDisplay) 334 cont.Add(fDisplay); 333 335 return WriteContainer(cont, fNameOut); 334 336 } -
trunk/MagicSoft/Mars/mjoptim/MJOptimizeDisp.cc
r8644 r8671 216 216 // Store result if requested 217 217 TObjArray cont; 218 if (fDisplay) 219 cont.Add(fDisplay); 218 220 cont.Add(&calc1); 219 221 return WriteContainer(cont, fNameOut); -
trunk/MagicSoft/Mars/mjoptim/MJOptimizeEnergy.cc
r8644 r8671 156 156 TObjArray cont; 157 157 cont.Add(&est); 158 if (fDisplay) 159 cont.Add(fDisplay); 158 160 return WriteContainer(cont, fNameOut); 159 161 }
Note:
See TracChangeset
for help on using the changeset viewer.