source: trunk/FACT++/scripts/schedule.js@ 14770

Last change on this file since 14770 was 14769, checked in by neise, 12 years ago
moved the schedule out of Main.js so it is easier for the shifter to edit it
File size: 1.7 KB
Line 
1'use strict';
2
3
4// This list of objects is currently used by Main.js
5// to build up the nightly schedule for FACT.
6//
7// one can define some 'tasks' like: "STARTUP", "SHUTDOWN", "RATESCAN" and "DATA"
8// for the latter two, one should define a 'source' parameter as well.
9// This must be a string which is contained in FACTs list of sources.
10// The Ratescan can as well get ra and dec coordinates
11// In case one does not specify a task "DATA" is assumed.
12// example:
13/*
14var observations = [
15 { date:"2013-01-09 21:05 UTC", task:'startup' },
16 { date:"2013-01-09 21:20 UTC", task:'ratescan', source:'Dark Patch 3' },
17 { date:"2013-01-09 21:21 UTC", source:'Crab'},
18 { date:"2013-01-10 04:44 UTC", task:'ratescan', source:'Dark Patch 3'},
19 { date:"2013-01-10 04:45 UTC", task:'data', source:'Mrk 421'},
20 { date:"2013-01-10 04:44 UTC", task:'ratescan', ra:3.1415, dec:3.1415},
21 { date:"2013-01-10 04:44 UTC", task:'shutdown'} ];
22*/
23
24// technical information.
25// the objects (i.e. the stuff in curly braces {})
26// in this list are used to create
27// instances of Observation-objects as defined in Object_class.js
28// so in case one is interested details of this interface, that is
29// the place to look.
30
31var observations = [
32// { date:"2013-01-09 21:05 UTC", task:'startup' },
33 { date:"2013-01-09 17:50 UTC", task:'ratescan', source:'Dark Patch 3' },
34// { date:"2013-01-09 21:21 UTC", source:'Crab'},
35// { date:"2013-01-10 04:44 UTC", task:'ratescan', source:'Dark Patch 3'},
36// { date:"2013-01-10 04:45 UTC", task:'data', source:'Mrk 421'},
37// { date:"2013-01-10 04:44 UTC", task:'ratescan', ra:3.1415, dec:3.1415},
38// { date:"2013-01-10 04:44 UTC", task:'shutdown'} ];
39
Note: See TracBrowser for help on using the repository browser.