Changeset 4068 for trunk/MagicSoft/Mars/mjobs
- Timestamp:
- 05/13/04 17:42:46 (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mjobs/MJExtractCalibTest.cc
r4066 r4068 60 60 #include "MExtractTime.h" 61 61 #include "MExtractTimeFastSpline.h" 62 #include "MFCosmics.h" 63 #include "MContinue.h" 62 64 #include "MFillH.h" 63 65 #include "MCalibrate.h" … … 263 265 fillcam.SetNameTab("Test"); 264 266 265 267 MFCosmics cosmics; 268 MContinue cont(&cosmics); 269 266 270 tlist.AddToList(&read); 267 271 tlist.AddToList(&apply); … … 269 273 if (fExtractor) 270 274 tlist.AddToList(fExtractor); 271 272 275 else 276 { 273 277 *fLog << warn << GetDescriptor() 274 278 << ": No extractor has been chosen, take default MExtractSlidingWindow " << endl; 275 279 tlist.AddToList(&extract2); 276 280 } 277 281 278 282 // if (TestBit(kEnableGraphicalOutput)) 283 tlist.AddToList(&cont); 279 284 tlist.AddToList(&fill); 280 285 tlist.AddToList(&photcalc); … … 337 342 *fLog << endl; 338 343 339 MArrivalTime arrtime;344 MArrivalTime arrtime; 340 345 341 346 // Setup Lists … … 357 362 MGeomApply apply; // Only necessary to craete geometry 358 363 MExtractTimeFastSpline extract; 364 MExtractSlidingWindow extcharge; // Only for the cosmics filter 359 365 MCalibrateRelTimes timecalc; 366 MFCosmics cosmics; 367 MContinue cont(&cosmics); 360 368 361 369 MHCamEvent evt("ExtTimes"); … … 371 379 if (fTimeExtractor) 372 380 tlist.AddToList(fTimeExtractor); 373 374 381 else 382 { 375 383 *fLog << warn << GetDescriptor() 376 384 << ": No extractor has been chosen, take default MExtractTimeFastSpline " << endl; 377 385 tlist.AddToList(&extract); 378 } 379 380 // if (TestBit(kEnableGraphicalOutput)) 386 } 387 388 tlist.AddToList(&extcharge); 389 tlist.AddToList(&cont); 381 390 tlist.AddToList(&fill); 382 391 tlist.AddToList(&timecalc);
Note:
See TracChangeset
for help on using the changeset viewer.