- Timestamp:
- 02/20/01 15:14:02 (24 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/macros/readCT1.C
r597 r602 9 9 // 10 10 11 M NphotEvent *phevt = new MNphotEvent() ;11 MCerPhotEvt *phevt = new MCerPhotEvt() ; 12 12 13 13 plist->AddToList( phevt ) ; -
trunk/MagicSoft/Mars/mgui/MCamDisplay.cc
r598 r602 11 11 #include "MCamGeom.h" 12 12 13 #include "M NphotEvent.h"13 #include "MCerPhotEvt.h" 14 14 15 15 … … 123 123 } 124 124 125 void MCamDisplay::Draw( M NphotEvent *event)126 { 127 128 // loop over all pixels in the M NphotEvent and125 void MCamDisplay::Draw( MCerPhotEvt *event) 126 { 127 128 // loop over all pixels in the MCerPhotEvt and 129 129 // determine the Pixel Id and the content 130 130 … … 158 158 } 159 159 160 void MCamDisplay::DrawError( M NphotEvent *event)160 void MCamDisplay::DrawError( MCerPhotEvt *event) 161 161 { 162 162 // 163 163 164 // loop over all pixels in the M NphotEvent and164 // loop over all pixels in the MCerPhotEvt and 165 165 // determine the Pixel Id and the content 166 166 Reset() ; -
trunk/MagicSoft/Mars/mgui/MCamDisplay.h
r596 r602 9 9 10 10 class TClonesArray ; 11 class M NphotEvent ;11 class MCerPhotEvt ; 12 12 13 13 class MCamDisplay : public TObject … … 35 35 void Draw(Option_t *option = "" ) ; 36 36 37 void Draw( M NphotEvent *event) ;38 void DrawError( M NphotEvent *event) ;37 void Draw( MCerPhotEvt *event) ; 38 void DrawError( MCerPhotEvt *event) ; 39 39 40 40 void Reset() ; -
trunk/MagicSoft/Mars/mgui/Makefile
r599 r602 59 59 MHexagon.cc \ 60 60 MCamGeom.cc \ 61 MCamNeighbor.cc 61 MCamNeighbor.cc \ 62 MCamDisplay.cc 62 63 63 64
Note:
See TracChangeset
for help on using the changeset viewer.