Line | |
---|
1 | Bool_t check(const char *path)
|
---|
2 | {
|
---|
3 | cout << "Compiling " << path << "...";
|
---|
4 |
|
---|
5 | if (!gSystem->CompileMacro(Form("datacenter/macros/%s", path), "cf"))
|
---|
6 | return kFALSE;
|
---|
7 |
|
---|
8 | cout << "done." << endl;
|
---|
9 |
|
---|
10 | return kTRUE;
|
---|
11 | }
|
---|
12 |
|
---|
13 | int checkaclic()
|
---|
14 | {
|
---|
15 | gLog.SetDebugLevel(2);
|
---|
16 |
|
---|
17 | if (!check("buildsequenceentries.C"))
|
---|
18 | return 1;
|
---|
19 | if (!check("checkfileavail.C"))
|
---|
20 | return 1;
|
---|
21 | if (!check("checkstardone.C"))
|
---|
22 | return 1;
|
---|
23 | if (!check("doexclusions.C"))
|
---|
24 | return 1;
|
---|
25 | if (!check("resetcolumn.C"))
|
---|
26 | return 1;
|
---|
27 | if (!check("plotstat.C"))
|
---|
28 | return 1;
|
---|
29 | if (!check("plotdb.C"))
|
---|
30 | return 1;
|
---|
31 | if (!check("fillstar.C"))
|
---|
32 | return 1;
|
---|
33 | if (!check("fillsinope.C"))
|
---|
34 | return 1;
|
---|
35 | if (!check("fillsignal.C"))
|
---|
36 | return 1;
|
---|
37 | if (!check("fillganymed.C"))
|
---|
38 | return 1;
|
---|
39 | if (!check("filldotrun.C"))
|
---|
40 | return 1;
|
---|
41 | if (!check("filldotrbk.C"))
|
---|
42 | return 1;
|
---|
43 | if (!check("filldotraw.C"))
|
---|
44 | return 1;
|
---|
45 | if (!check("fillcalib.C"))
|
---|
46 | return 1;
|
---|
47 | if (!check("findcacofiles.C"))
|
---|
48 | return 1;
|
---|
49 | if (!check("insertcacofile.C"))
|
---|
50 | return 1;
|
---|
51 | if (!check("insertdataset.C"))
|
---|
52 | return 1;
|
---|
53 | if (!check("insertdate.C"))
|
---|
54 | return 1;
|
---|
55 | if (!check("resetallruns.C"))
|
---|
56 | return 1;
|
---|
57 | if (!check("writesequencefile.C"))
|
---|
58 | return 1;
|
---|
59 |
|
---|
60 | return 0;
|
---|
61 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.