Changeset 18283 for trunk/FACT++/scripts


Ignore:
Timestamp:
08/20/15 09:03:54 (9 years ago)
Author:
smueller
Message:
added the update schedule script for manual schedule injection
Location:
trunk/FACT++/scripts
Files:
1 added
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/FACT++/scripts/Main.js

    r18217 r18283  
    109109            continue;
    110110
    111         if (irq || !takeRun("drs-pedestal", 1000))     // 40 / 20s     (50Hz)
    112             continue;
     111        if (where!="data")
     112        {
     113            if (irq || !takeRun("drs-pedestal", 1000))     // 40 / 20s     (50Hz)
     114                continue;
     115        }
    113116
    114117        break;
    115118    }
    116119
    117     dim.send("FAD_CONTROL/SET_FILE_FORMAT", 6);
    118 
    119     while (!irq && !takeRun("drs-pedestal", 1000));     // 40 / 20s     (50Hz)
    120     while (!irq && !takeRun("drs-time",     1000));     // 40 / 20s     (50Hz)
     120    if (where!="data")
     121    {
     122        dim.send("FAD_CONTROL/SET_FILE_FORMAT", 6);
     123
     124        while (!irq && !takeRun("drs-pedestal", 1000));     // 40 / 20s     (50Hz)
     125        while (!irq && !takeRun("drs-time",     1000));     // 40 / 20s     (50Hz)
     126    }
    121127
    122128    while (!irq)
     
    11581164        if (!irq)
    11591165        {
     1166            dim.log("Starting calibration.");
     1167
     1168            // Calibration (2% of 20')
     1169            while (!irq)
     1170            {
     1171                if (irq || !takeRun("pedestal",         1000))  // 80 Hz  -> 10s
     1172                    continue;
     1173                if (irq || !takeRun("light-pulser-ext", 1000))  // 80 Hz  -> 10s
     1174                    continue;
     1175                break;
     1176            }
     1177
    11601178            var tm2 = new Date();
    11611179
     
    14731491                if (irq || !takeRun("pedestal",         1000))  // 80 Hz  -> 10s
    14741492                    continue;
    1475                 if (irq || !takeRun("light-pulser-ext", 1000))  // 80 Hz  -> 10s
    1476                     continue;
     1493//                if (irq || !takeRun("light-pulser-ext", 1000))  // 80 Hz  -> 10s
     1494//                    continue;
    14771495                break;
    14781496            }
Note: See TracChangeset for help on using the changeset viewer.