Changeset 9143


Ignore:
Timestamp:
10/14/08 15:36:19 (16 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r9141 r9143  
    1818
    1919                                                 -*-*- END OF LINE -*-*-
     20
     21 2008/10/14 Thomas Bretz
     22
     23   * mjobs/MJPedestal.cc:
     24     - for extracting the pulse position we have to allow sum events
     25       but require level 1 trigger instead of disallowing sum-events
     26
     27
    2028
    2129 2008/10/13 Thomas Bretz
  • trunk/MagicSoft/Mars/NEWS

    r9141 r9143  
    3636
    3737   * Now allows to merpp files newer than 2008/09/03.
     38
     39 ;callisto
     40
     41   * Extracting the pulse position for the pulse position check events
     42     with sum trigger were denied. This decreased the statistics
     43     extremely and therefor the resulting puse position was calculated
     44     quite weak. Now sum events pass the calculation if and only if they
     45     have also a level 1 trigger.
    3846
    3947
  • trunk/MagicSoft/Mars/mjobs/MJPedestal.cc

    r9068 r9143  
    10271027    // calibration events in such data, so this is fine.
    10281028    // The selection is done with the trigger bits before prescaling
     1029    // Extract pulse position from Lvl1 events.
    10291030    MTriggerPatternDecode decode;
    10301031    MFTriggerPattern fcalib("SelectCosmics");
    10311032    fcalib.SetDefault(kTRUE);
    10321033    fcalib.DenyAll();
    1033     fcalib.AllowTriggerLvl1();
     1034    fcalib.RequireTriggerLvl1();
    10341035    fcalib.AllowTriggerLvl2();
    1035     //fcalib.AllowSumTrigger();
     1036    fcalib.AllowSumTrigger();
    10361037
    10371038    tlist.AddToList(&decode);
Note: See TracChangeset for help on using the changeset viewer.