1 | #include <TROOT.h>
|
---|
2 | #include <TClass.h>
|
---|
3 | #include <TSystem.h>
|
---|
4 | #include <TGClient.h>
|
---|
5 | #include <TApplication.h>
|
---|
6 | #include <TObjectTable.h>
|
---|
7 |
|
---|
8 | #include "MLog.h"
|
---|
9 | #include "MLogManip.h"
|
---|
10 |
|
---|
11 | #include "MEnv.h"
|
---|
12 | #include "MArgs.h"
|
---|
13 | #include "MArray.h"
|
---|
14 | #include "MDirIter.h"
|
---|
15 |
|
---|
16 | #include "MStatusDisplay.h"
|
---|
17 |
|
---|
18 | #include "MDataSet.h"
|
---|
19 | #include "MJCut.h"
|
---|
20 |
|
---|
21 | using namespace std;
|
---|
22 |
|
---|
23 | static void StartUpMessage()
|
---|
24 | {
|
---|
25 | gLog << all << endl;
|
---|
26 |
|
---|
27 | // 1 2 3 4 5
|
---|
28 | // 12345678901234567890123456789012345678901234567890
|
---|
29 | gLog << "========================================================" << endl;
|
---|
30 | gLog << " Ganymed - MARS V" << MARSVER << endl;
|
---|
31 | gLog << " MARS -- Gammas Are Now Your Most Exciting Discovery" << endl;
|
---|
32 | gLog << " Compiled with ROOT v" << ROOTVER << " on <" << __DATE__ ">" << endl;
|
---|
33 | gLog << "========================================================" << endl;
|
---|
34 | gLog << endl;
|
---|
35 | }
|
---|
36 |
|
---|
37 | static void Usage()
|
---|
38 | {
|
---|
39 | // 1 2 3 4 5 6 7 8
|
---|
40 | // 12345678901234567890123456789012345678901234567890123456789012345678901234567890
|
---|
41 | gLog << all << endl;
|
---|
42 | gLog << "Sorry the usage is:" << endl;
|
---|
43 | gLog << " ganymed [-c] [-y] [options] sequences.txt" << endl << endl;
|
---|
44 | gLog << " Arguments:" << endl;
|
---|
45 | gLog << " dataset.txt: Ascii file defining a collection of sequences" << endl;
|
---|
46 | gLog << " For more details see MDataSet." << endl;
|
---|
47 | gLog << " Root Options:" << endl;
|
---|
48 | gLog << " -b Batch mode (no graphical output to screen)" << endl<<endl;
|
---|
49 | gLog << " Operation Mode:" << endl;
|
---|
50 | gLog << " -mc Monte Carlo dataset (no times)" << endl;
|
---|
51 | gLog << " --wobble Force wobble mode (overwrites dataset)" << endl;
|
---|
52 | gLog << " --no-wobble Force normal mode (overwrites dataset)" << endl << endl;
|
---|
53 | gLog << " Options:" << endl;
|
---|
54 | gLog.Usage();
|
---|
55 | gLog << " --debug-env=0 Disable debugging setting resources <default>" << endl;
|
---|
56 | gLog << " --debug-env[=1] Display untouched resources after program execution" << endl;
|
---|
57 | gLog << " --debug-env=2 Display untouched resources after eventloop setup" << endl;
|
---|
58 | gLog << " --debug-env=3 Debug setting resources from resource file" << endl;
|
---|
59 | gLog << " --debug-mem Debug memory usage" << endl << endl;
|
---|
60 | gLog << endl;
|
---|
61 | gLog << " -q Quit when job is finished" << endl;
|
---|
62 | gLog << " -f Force overwrite of existing files" << endl;
|
---|
63 | gLog << " --n=[n] Analysis number" << endl;
|
---|
64 | gLog << " --out=path Path to write the all output to [def=local path]" << endl;
|
---|
65 | gLog << " --outf=filename Filename for output file (eg. status display)" << endl;
|
---|
66 | gLog << " --sum[=filename] Enable writing of summary file (events after cut0)" << endl;
|
---|
67 | // gLog << " --res[=filename] Enable writing of result file (surviving events)" << endl;
|
---|
68 | gLog << " --skip-res Disable writing of result events" << endl;
|
---|
69 | gLog << " --write-only Only write output files. No histograms filled." << endl;
|
---|
70 | gLog << " --print-ds Print Dataset information" << endl;
|
---|
71 | gLog << " --print-files Print Files taken from Sequences ('+' found, '-' missing)" << endl;
|
---|
72 | // gLog << " --full-display Show as many plots as possible" << endl;
|
---|
73 | gLog << " --config=ganymed.rc Resource file [default=ganymed.rc]" << endl;
|
---|
74 | gLog << endl;
|
---|
75 | gLog << " --version, -V Show startup message with version number" << endl;
|
---|
76 | gLog << " -?, -h, --help This help" << endl << endl;
|
---|
77 | gLog << "Background:" << endl;
|
---|
78 | gLog << " Ganymed is the largest moon of Jupiter, a large, icy, outer moon that" << endl;
|
---|
79 | gLog << " is scarred with impact craters and many parallel faults. It has a" << endl;
|
---|
80 | gLog << " diameter of about 5268km and orbits Jupiter at a mean distance of" << endl;
|
---|
81 | gLog << " 1,070,000km. It has a magnetic field and probably has a molten iron" << endl;
|
---|
82 | gLog << " core. It takes Ganymed 7.15 days to orbit Jupiter. Its mass is" << endl;
|
---|
83 | gLog << " 1.5e23kg. It was independently discovered by Galileo and S.Marius in"<< endl;
|
---|
84 | gLog << " 1610. Ganymed is the largest moon in the solar system; it is also" << endl;
|
---|
85 | gLog << " larger than the planets Mercury and Pluto." << endl << endl;
|
---|
86 | }
|
---|
87 |
|
---|
88 | int main(int argc, char **argv)
|
---|
89 | {
|
---|
90 | //
|
---|
91 | // Evaluate arguments
|
---|
92 | //
|
---|
93 | MArgs arg(argc, argv, kTRUE);
|
---|
94 | gLog.Setup(arg);
|
---|
95 |
|
---|
96 | StartUpMessage();
|
---|
97 |
|
---|
98 | if (arg.HasOnly("-V") || arg.HasOnly("--version"))
|
---|
99 | return 0;
|
---|
100 |
|
---|
101 | if (arg.HasOnly("-?") || arg.HasOnly("-h") || arg.HasOnly("--help"))
|
---|
102 | {
|
---|
103 | Usage();
|
---|
104 | return 2;
|
---|
105 | }
|
---|
106 |
|
---|
107 | const TString kConfig = arg.GetStringAndRemove("--config=", "ganymed.rc");
|
---|
108 |
|
---|
109 | const Bool_t kPrintSeq = arg.HasOnlyAndRemove("--print-ds");
|
---|
110 | const Bool_t kPrintFiles = arg.HasOnlyAndRemove("--print-files");
|
---|
111 | const Bool_t kDebugMem = arg.HasOnlyAndRemove("--debug-mem");
|
---|
112 | const Bool_t kWriteOnly = arg.HasOnlyAndRemove("--write-only");
|
---|
113 | // const Bool_t kFullDisplay = arg.HasOnlyAndRemove("--full-display");
|
---|
114 | Int_t kDebugEnv = arg.HasOnlyAndRemove("--debug-env") ? 1 : 0;
|
---|
115 | kDebugEnv = arg.GetIntAndRemove("--debug-env=", kDebugEnv);
|
---|
116 |
|
---|
117 | const Bool_t kQuit = arg.HasOnlyAndRemove("-q");
|
---|
118 | const Bool_t kBatch = arg.HasOnlyAndRemove("-b");
|
---|
119 | const Bool_t kOverwrite = arg.HasOnlyAndRemove("-f");
|
---|
120 | //const Bool_t kForceExec = arg.HasOnlyAndRemove("-ff");
|
---|
121 |
|
---|
122 | const Bool_t kIsMc = arg.HasOnlyAndRemove("-mc");
|
---|
123 | const Bool_t kWobbleModeOn = arg.HasOnlyAndRemove("--wobble");
|
---|
124 | const Bool_t kWobbleModeOff = arg.HasOnlyAndRemove("--no-wobble");
|
---|
125 |
|
---|
126 | const Int_t kNumAnalysis = arg.GetIntAndRemove("--n=", -1);
|
---|
127 | const TString kOutpath = arg.GetStringAndRemove("--out=", ".");
|
---|
128 | const TString kOutfile = arg.GetStringAndRemove("--outf=", "");
|
---|
129 | const Bool_t kWriteSummary = arg.HasOnlyAndRemove("--sum");
|
---|
130 | const TString kNameSummary = arg.GetStringAndRemove("--sum=");
|
---|
131 | const Bool_t kSkipResult = arg.HasOnlyAndRemove("--skip-res");
|
---|
132 | // const Bool_t kWriteResult = arg.HasOnlyAndRemove("--res");
|
---|
133 | // const TString kNameResult = arg.GetStringAndRemove("--res=");
|
---|
134 |
|
---|
135 | if (kWobbleModeOn && kWobbleModeOff)
|
---|
136 | {
|
---|
137 | gLog << err << "ERROR - Wobble mode options are exclusive." << endl;
|
---|
138 | Usage();
|
---|
139 | return 2;
|
---|
140 | }
|
---|
141 |
|
---|
142 | if (arg.GetNumOptions()>0)
|
---|
143 | {
|
---|
144 | gLog << warn << "WARNING - Unknown commandline options..." << endl;
|
---|
145 | arg.Print("options");
|
---|
146 | gLog << endl;
|
---|
147 | return 2;
|
---|
148 | }
|
---|
149 |
|
---|
150 | //
|
---|
151 | // check for the right usage of the program
|
---|
152 | //
|
---|
153 | if (arg.GetNumArguments()!=1)
|
---|
154 | {
|
---|
155 | Usage();
|
---|
156 | return 2;
|
---|
157 | }
|
---|
158 |
|
---|
159 | //
|
---|
160 | // Setup sequence file and check for its existance
|
---|
161 | //
|
---|
162 | const TString kSequences = arg.GetArgumentStr(0);
|
---|
163 |
|
---|
164 | if (gSystem->AccessPathName(kSequences, kFileExists))
|
---|
165 | {
|
---|
166 | gLog << err << "Sorry, sequences file '" << kSequences << "' doesn't exist." << endl;
|
---|
167 | return 2;
|
---|
168 | }
|
---|
169 |
|
---|
170 | if (gSystem->AccessPathName(kConfig, kFileExists))
|
---|
171 | {
|
---|
172 | gLog << err << "Sorry, config file '" << kConfig << "' doesn't exist." << endl;
|
---|
173 | return 2;
|
---|
174 | }
|
---|
175 |
|
---|
176 | if (kDebugMem)
|
---|
177 | TObject::SetObjectStat(kTRUE);
|
---|
178 |
|
---|
179 | //
|
---|
180 | // Setup sequence and check its validity
|
---|
181 | //
|
---|
182 | MDataSet seq(kSequences);
|
---|
183 | if (kNumAnalysis>=0)
|
---|
184 | seq.SetNumAnalysis(kNumAnalysis);
|
---|
185 | if (kPrintSeq || kPrintFiles)
|
---|
186 | {
|
---|
187 | gLog << all;
|
---|
188 | gLog.Separator(kSequences);
|
---|
189 | seq.Print(kPrintFiles?"files":"");
|
---|
190 | gLog << endl;
|
---|
191 | }
|
---|
192 | if (!seq.IsValid())
|
---|
193 | {
|
---|
194 | gLog << err << "Sequences read but not valid!" << endl << endl;
|
---|
195 | return 2;
|
---|
196 | }
|
---|
197 |
|
---|
198 | //
|
---|
199 | // Initialize root
|
---|
200 | //
|
---|
201 | MArray::Class()->IgnoreTObjectStreamer();
|
---|
202 | MParContainer::Class()->IgnoreTObjectStreamer();
|
---|
203 |
|
---|
204 | TApplication app("ganymed", &argc, argv);
|
---|
205 | if (!gROOT->IsBatch() && !gClient || gROOT->IsBatch() && !kBatch)
|
---|
206 | {
|
---|
207 | gLog << err << "Bombing... maybe your DISPLAY variable is not set correctly!" << endl;
|
---|
208 | return 1;
|
---|
209 | }
|
---|
210 |
|
---|
211 | Bool_t iswobble = seq.IsWobbleMode();
|
---|
212 | if (kWobbleModeOn)
|
---|
213 | iswobble = kTRUE;
|
---|
214 | if (kWobbleModeOff)
|
---|
215 | iswobble = kFALSE;
|
---|
216 |
|
---|
217 | //
|
---|
218 | // Update frequency by default = 1Hz
|
---|
219 | //
|
---|
220 | MStatusDisplay *d = new MStatusDisplay;
|
---|
221 |
|
---|
222 | // From now on each 'Exit' means: Terminate the application
|
---|
223 | d->SetBit(MStatusDisplay::kExitLoopOnExit);
|
---|
224 | d->SetTitle(kSequences);
|
---|
225 |
|
---|
226 | //
|
---|
227 | // Calculate pedestal for pedestal-calculation and calibration
|
---|
228 | //
|
---|
229 | MEnv env(kConfig);
|
---|
230 |
|
---|
231 | MJCut job(Form("MJCut #%d", seq.GetNumAnalysis()));
|
---|
232 | job.SetEnv(&env);
|
---|
233 | job.SetEnvDebug(kDebugEnv);
|
---|
234 | job.SetDisplay(d);;
|
---|
235 | job.SetOverwrite(kOverwrite);
|
---|
236 | job.SetPathOut(kOutpath);
|
---|
237 | job.SetNameOutFile(kOutfile);
|
---|
238 | job.SetNameSummaryFile(kNameSummary);
|
---|
239 | //job.SetNameResultFile(kNameResult);
|
---|
240 | job.EnableWriteOnly(kWriteOnly);
|
---|
241 | job.EnableWobbleMode(iswobble);
|
---|
242 | //if (kFullDisplay)
|
---|
243 | // job.EnableFullDisplay(kFullDisplay);
|
---|
244 | job.EnableMonteCarloMode(kIsMc);
|
---|
245 | job.EnableStorageOfResult(!kSkipResult);
|
---|
246 | if (kWriteSummary) // Don't change flag set in SetNameSummaryFile
|
---|
247 | job.EnableStorageOfSummary();
|
---|
248 | //if (kWriteResult) // Don't change flag set in SetNameSummaryFile
|
---|
249 | // job.EnableStorageOfResult();
|
---|
250 |
|
---|
251 | if (!job.Process(seq))
|
---|
252 | {
|
---|
253 | gLog << err << "Calculation of cuts failed." << endl << endl;
|
---|
254 | return 2;
|
---|
255 | }
|
---|
256 | if (kDebugEnv>0)
|
---|
257 | env.PrintUntouched();
|
---|
258 |
|
---|
259 | if (!job.GetDisplay())
|
---|
260 | {
|
---|
261 | gLog << warn << "Display closed by user... execution aborted." << endl << endl;
|
---|
262 | return 1;
|
---|
263 | }
|
---|
264 |
|
---|
265 | if (kBatch || kQuit)
|
---|
266 | delete d;
|
---|
267 | else
|
---|
268 | {
|
---|
269 | // From now on each 'Close' means: Terminate the application
|
---|
270 | d->SetBit(MStatusDisplay::kExitLoopOnClose);
|
---|
271 |
|
---|
272 | // Wait until the user decides to exit the application
|
---|
273 | app.Run(kFALSE);
|
---|
274 | }
|
---|
275 |
|
---|
276 | if (TObject::GetObjectStat())
|
---|
277 | {
|
---|
278 | TObject::SetObjectStat(kFALSE);
|
---|
279 | gObjectTable->Print();
|
---|
280 | }
|
---|
281 |
|
---|
282 | return 0;
|
---|
283 | }
|
---|