Changeset 8671


Ignore:
Timestamp:
08/15/07 21:11:54 (17 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
8 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r8670 r8671  
    3939   * mjobs/MJCut.cc:
    4040     - 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
    4150
    4251
  • trunk/MagicSoft/Mars/NEWS

    r8670 r8671  
    132132      + PostCleanType: 3
    133133
    134    - star/ganymed: The old spark-cuts have been replaced by new ones.
    135      These new spark cuts have been cross checked with the sequences
    136      84720 (before splitter), 101041 (after splitter) and 223539 (new
    137      FADCs). In all cases they seperate pretty well, but of course not
    138      perfect. Monte Carlos have suggested to tighten the cuts a little
    139      bit further at low sizes. This has been done.
    140 
    141134   - ganymed: The old hadronness and size cuts have gotten new indices
    142135     (10, 11). The old indices 8 and 9 now mean an additional condition
     
    170163     (Rem: ThetaSqN is no longer needed)
    171164
    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-source
     165   - ganymed: is now storing the events of all (on- and off-)
     166     source positions even in the case of more than one off-source
    174167     position. This should allow sponde to work properly and the
    175168     energy estimation is done correctly in all cases (without any
     
    195188     paremtrization set parameter 8 to 0.
    196189
    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!
    201202
    202203   - ganymed: The distribution of observation time versus zenith
  • trunk/MagicSoft/Mars/macros/optim/optimenergy.C

    r7409 r8671  
    4646    */
    4747
     48    // opt.SetPathOut("optimenergy.root");
    4849    opt.RunEnergy("ganymedmcpart.root", r);
    4950}
  • trunk/MagicSoft/Mars/macros/optim/optimonoff.C

    r8113 r8671  
    4141    opt.SetDisplay(d);
    4242
     43    // opt.SetPathOut("optimonoff.root");
    4344    opt.RunOnOff("ganymed00000001-summary.root", &cuts, &fit);
    4445}
  • trunk/MagicSoft/Mars/macros/optim/optimwobble.C

    r7533 r8671  
    4747    opt.SetDisplay(d);
    4848
     49    // opt.SetPathOut("optimwobble.root");
    4950    opt.RunOnOff("wobblelza-abs.root", &cuts, &fit);
    5051}
  • trunk/MagicSoft/Mars/mjoptim/MJOptimizeCuts.cc

    r8644 r8671  
    331331    TObjArray cont;
    332332    cont.Add(&contin);
     333    if (fDisplay)
     334        cont.Add(fDisplay);
    333335    return WriteContainer(cont, fNameOut);
    334336}
  • trunk/MagicSoft/Mars/mjoptim/MJOptimizeDisp.cc

    r8644 r8671  
    216216    // Store result if requested
    217217    TObjArray cont;
     218    if (fDisplay)
     219        cont.Add(fDisplay);
    218220    cont.Add(&calc1);
    219221    return WriteContainer(cont, fNameOut);
  • trunk/MagicSoft/Mars/mjoptim/MJOptimizeEnergy.cc

    r8644 r8671  
    156156    TObjArray cont;
    157157    cont.Add(&est);
     158    if (fDisplay)
     159        cont.Add(fDisplay);
    158160    return WriteContainer(cont, fNameOut);
    159161}
Note: See TracChangeset for help on using the changeset viewer.