Changeset 8256 for trunk/MagicSoft
- Timestamp:
- 01/16/07 13:59:22 (18 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r8255 r8256 29 29 * mimage/MHHillasExt.cc: 30 30 - call SetDirectory(NULL) after SetName 31 32 * mjobs/MSequence.[h,cc]: 33 - commented out obsolete GetFileNames 31 34 32 35 -
trunk/MagicSoft/Mars/mimage/MHHillasExt.cc
r6977 r8256 72 72 // connect all the histogram with the container fHist 73 73 // 74 fHAsym.UseCurrentStyle(); 75 fHM3Long.UseCurrentStyle(); 76 fHM3Trans.UseCurrentStyle(); 77 fHMaxDist.UseCurrentStyle(); 78 79 fHAsym.SetName("Asymmetry"); 80 fHM3Long.SetName("M3l"); 81 fHM3Trans.SetName("M3t"); 82 fHMaxDist.SetName("MaxDist"); 83 84 fHAsym.SetTitle("Asymmetry"); 85 fHM3Long.SetTitle("3^{rd} Moment Longitudinal"); 86 fHM3Trans.SetTitle("3^{rd} Moment Transverse"); 87 fHMaxDist.SetTitle("Distance of max distant pixel"); 88 89 fHAsym.SetXTitle("Asym [mm]"); 90 fHM3Long.SetXTitle("3^{rd} M_{l} [mm]"); 91 fHM3Trans.SetXTitle("3^{rd} M_{t} [mm]"); 92 fHMaxDist.SetXTitle("D_{max} [mm]"); 93 94 fHAsym.SetYTitle("Counts"); 95 fHM3Long.SetYTitle("Counts"); 96 fHM3Trans.SetYTitle("Counts"); 97 fHMaxDist.SetYTitle("Counts"); 98 99 fHAsym.SetFillStyle(4000); 100 fHM3Long.SetFillStyle(4000); 101 fHM3Trans.SetFillStyle(4000); 102 fHMaxDist.SetFillStyle(4000); 103 74 104 fHAsym.SetDirectory(NULL); 75 105 fHM3Long.SetDirectory(NULL); 76 106 fHM3Trans.SetDirectory(NULL); 77 107 fHMaxDist.SetDirectory(NULL); 78 79 fHAsym.UseCurrentStyle();80 fHM3Long.UseCurrentStyle();81 fHM3Trans.UseCurrentStyle();82 fHMaxDist.UseCurrentStyle();83 84 fHAsym.SetName("Asymmetry");85 fHM3Long.SetName("M3l");86 fHM3Trans.SetName("M3t");87 fHMaxDist.SetName("MaxDist");88 89 fHAsym.SetTitle("Asymmetry");90 fHM3Long.SetTitle("3^{rd} Moment Longitudinal");91 fHM3Trans.SetTitle("3^{rd} Moment Transverse");92 fHMaxDist.SetTitle("Distance of max distant pixel");93 94 fHAsym.SetXTitle("Asym [mm]");95 fHM3Long.SetXTitle("3^{rd} M_{l} [mm]");96 fHM3Trans.SetXTitle("3^{rd} M_{t} [mm]");97 fHMaxDist.SetXTitle("D_{max} [mm]");98 99 fHAsym.SetYTitle("Counts");100 fHM3Long.SetYTitle("Counts");101 fHM3Trans.SetYTitle("Counts");102 fHMaxDist.SetYTitle("Counts");103 104 fHAsym.SetFillStyle(4000);105 fHM3Long.SetFillStyle(4000);106 fHM3Trans.SetFillStyle(4000);107 fHMaxDist.SetFillStyle(4000);108 108 109 109 fHM3Trans.SetLineColor(kBlue); -
trunk/MagicSoft/Mars/mjobs/MSequence.cc
r8247 r8256 346 346 // Read the file fname as setup file for the sequence. 347 347 // 348 void MSequence::GetFileNames(TEnv &env, const TArrayI &arr)349 {348 //void MSequence::GetFileNames(TEnv &env, const TArrayI &arr) 349 //{ 350 350 /* 351 351 for (int i=0; i<arr.GetSize(); i++) … … 362 362 } 363 363 */ 364 }364 //} 365 365 366 366 // -------------------------------------------------------------------------- … … 368 368 // Get a file name corresponding to the run-number num, returns 0 if n/a 369 369 // 370 const char *MSequence::GetFileName(UInt_t num)371 {372 return 0;370 //const char *MSequence::GetFileName(UInt_t num) 371 //{ 372 // return 0; 373 373 /* 374 374 TString *str = (TString*)fFileNames.GetValue(num); 375 375 return str ? str->Data() : 0;*/ 376 }376 //} 377 377 378 378 MSequence::LightCondition_t MSequence::ReadLightCondition(TEnv &env) const … … 452 452 Split(str, fDatRuns); 453 453 454 GetFileNames(env, fRuns);455 GetFileNames(env, fCalRuns);456 GetFileNames(env, fPedRuns);457 GetFileNames(env, fDatRuns);454 // GetFileNames(env, fRuns); 455 // GetFileNames(env, fCalRuns); 456 // GetFileNames(env, fPedRuns); 457 // GetFileNames(env, fDatRuns); 458 458 459 459 // Dummies: -
trunk/MagicSoft/Mars/mjobs/MSequence.h
r8245 r8256 54 54 55 55 void Split(TString &runs, TArrayI &data) const; 56 void GetFileNames(TEnv &env, const TArrayI &arr);56 //void GetFileNames(TEnv &env, const TArrayI &arr); 57 57 LightCondition_t ReadLightCondition(TEnv &env) const; 58 58
Note:
See TracChangeset
for help on using the changeset viewer.