Changeset 601
- Timestamp:
- 02/20/01 15:05:39 (24 years ago)
- Location:
- trunk/MagicSoft/Mars/manalysis
- Files:
-
- 2 added
- 2 deleted
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/manalysis/AnalysisLinkDef.h
r592 r601 5 5 #pragma link off all functions; 6 6 7 #pragma link C++ class M NphotPix;8 #pragma link C++ class M NphotEvent;7 #pragma link C++ class MCerPhotPix; 8 #pragma link C++ class MCerPhotEvt; 9 9 10 10 #pragma link C++ class MReadCT1Ascii; -
trunk/MagicSoft/Mars/manalysis/MReadCT1Ascii.cc
r597 r601 13 13 14 14 #include "MParList.h" 15 #include "M NphotEvent.h"15 #include "MCerPhotEvt.h" 16 16 17 17 ClassImp(MReadCT1Ascii) … … 49 49 return kFALSE ; 50 50 51 // look for the M NphotEvent class in the plist51 // look for the MCerPhotEvt class in the plist 52 52 53 53 54 fNphot = (M NphotEvent*)pList->FindObject("MNphotEvent");54 fNphot = (MCerPhotEvt*)pList->FindObject("MCerPhotEvt"); 55 55 56 56 if (!fNphot ) 57 57 { 58 cout << "MRawCT1Ascii::PreProcess - WARNING: M NphotEvent not found... exit" << endl;58 cout << "MRawCT1Ascii::PreProcess - WARNING: MCerPhotEvt not found... exit" << endl; 59 59 return kFALSE ; 60 60 } -
trunk/MagicSoft/Mars/manalysis/MReadCT1Ascii.h
r597 r601 6 6 #endif 7 7 8 class M NphotEvent ;8 class MCerPhotEvt ; 9 9 10 10 class MReadCT1Ascii : public MTask … … 15 15 FILE* fInputfile ; //! the inputfile 16 16 17 M NphotEvent *fNphot ; //! the data container for all data.17 MCerPhotEvt *fNphot ; //! the data container for all data. 18 18 19 19 Float_t fPedest[127] ; //! -
trunk/MagicSoft/Mars/manalysis/Makefile
r592 r601 31 31 .SUFFIXES: .c .cc .cxx .h .hxx .o 32 32 33 SRCFILES = M NphotEvent.cc \33 SRCFILES = MCerPhotEvt.cc \ 34 34 MReadCT1Ascii.cc 35 35
Note:
See TracChangeset
for help on using the changeset viewer.