- Timestamp:
- 02/02/01 11:28:36 (24 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 2 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/macros/readCT1.C
r594 r595 19 19 // MReadCT1Ascii *readct1 = new MReadCT1Ascii("/hd10/www/Anal_MAGIC/CT1_99_on1.dat") ; 20 20 21 22 23 21 cout << readct1->PreProcess(plist) << endl ; 24 22 25 23 Int_t icount = 0 ; 24 25 MCamDisplay display(0) ; 26 26 27 while ( readct1->Process() == kTRUE ) 27 28 { 28 29 cout << "Event: " << icount++ << endl ; 29 // phevt->Print() ; 30 31 if ( icount == 3 ) 32 phevt->Print() ; 33 34 display->Draw( phevt ) ; 35 36 gClient->HandleInput(); 37 if(getchar()=='e') break; 30 38 } 31 39 -
trunk/MagicSoft/Mars/manalysis/MNphotEvent.cc
r594 r595 6 6 7 7 #include "MCamGeom.h" 8 //#include "MCamDisplay.h"8 #include "MCamDisplay.h" 9 9 #include "MHexagon.h" 10 10 … … 62 62 // 63 63 64 // MCamDisplay disp(fType) ;64 MCamDisplay *disp = new MCamDisplay(fType) ; 65 65 66 // for (Int_t i=0; i<fNbPixels; i++) 67 // { 68 // disp.SetPixelColor( ((MNphotPix *) fPixels->At(i))->GetPixId(), 69 // ((MNphotPix *) fPixels->At(i))->GetPhotons()) ; 70 // } 71 // disp.Draw() ; 66 disp->Draw( this ) ; 72 67 68 // disp->Draw() ; 69 73 70 } 74 71 … … 106 103 } 107 104 105 Int_t MNphotEvent::GetPixelId(Int_t i ) 106 { 107 return ( ( (MNphotPix *) fPixels->At(i))->GetPixId() ) ; 108 } 109 110 Float_t MNphotEvent::GetPhotons(Int_t i ) 111 { 112 return ( ( (MNphotPix *) fPixels->At(i))->GetPhotons() ) ; 113 } -
trunk/MagicSoft/Mars/manalysis/MNphotEvent.h
r594 r595 62 62 MNphotEvent(const char *name=NULL, const char *title=NULL) ; 63 63 64 void Draw(Option_t* option ) ;64 void Draw(Option_t* option = "" ) ; 65 65 66 66 Int_t GetNbPixels() ; … … 72 72 void Print() ; 73 73 74 ClassDef(MNphotEvent, 1) // class for Nphotons Events 74 Int_t GetPixelId(Int_t i ) ; 75 Float_t GetPhotons(Int_t i ) ; 76 77 ClassDef(MNphotEvent, 1) // class for Nphotons Events 75 78 }; 76 79 -
trunk/MagicSoft/Mars/mgui/Makefile
r591 r595 27 27 # connect the include files defined in the config.mk file 28 28 # 29 INCLUDES = -I. -I../mbase -I../mraw -I../mdatacheck -I../meventdisp 29 INCLUDES = -I. -I../mbase -I../mraw -I../mdatacheck -I../meventdisp -I../manalysis 30 30 31 31 # … … 58 58 MGPrototyp.cc \ 59 59 MHexagon.cc \ 60 MCamGeom.cc 60 MCamGeom.cc \ 61 MCamDisplay.cc 61 62 62 63
Note:
See TracChangeset
for help on using the changeset viewer.