Changeset 544
- Timestamp:
- 01/17/01 15:51:42 (24 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mdatacheck/MViewAdcSpectra.cc
r462 r544 31 31 32 32 // ================================================================================ 33 Bool_t MViewAdcSpectra:: PedAdcSpectra ( Char_t *inputfile )33 Bool_t MViewAdcSpectra::AdcSpectra ( Char_t *inputfile, Char_t *treeName ) 34 34 { 35 35 // This job reads in the FADC data from all events and fills … … 37 37 // 38 38 39 cout << "PedAdcSpectra:: Analyse the file " << inputfile << endl ; 39 cout << "PedAdcSpectra:: Analyse the tree " << treeName 40 << "in the file " << inputfile << endl ; 40 41 41 42 // create a (empty) list of parameters which can be used by the tasks … … 69 70 // set up the tasks for this job 70 71 71 MReadTree *readin = new MReadTree ( inputfile, "Data") ;72 MReadTree *readin = new MReadTree ( inputfile, treeName ) ; 72 73 tasks->AddToList( readin ) ; 73 74 -
trunk/MagicSoft/Mars/mdatacheck/MViewAdcSpectra.h
r462 r544 16 16 ~MViewAdcSpectra() ; 17 17 18 Bool_t PedAdcSpectra( Char_t *inputFile ) ;18 Bool_t AdcSpectra( Char_t *inputFile , Char_t *treeName ) ; 19 19 20 20 // Bool_t CrAdcSpectra ( Char_t *inputFile ) ; -
trunk/MagicSoft/Mars/mgui/MGDataCheckMain.cc
r466 r544 293 293 } 294 294 295 fViewAdc. PedAdcSpectra(fInputFile) ;295 fViewAdc.AdcSpectra(fInputFile, "PedEvents" ) ; 296 296 297 297 break ; … … 307 307 } 308 308 309 // fOctober.CrAdcSpectra(fInputFile) ;310 309 fViewAdc.AdcSpectra(fInputFile, "Events" ) ; 310 311 311 break ; 312 312 … … 333 333 } 334 334 335 // fOctober.CrTdcSpectra(fInputFile) ;335 336 336 337 337 break ;
Note:
See TracChangeset
for help on using the changeset viewer.