Changeset 2210 for trunk/MagicSoft/Mars/manalysis
- Timestamp:
- 06/23/03 13:19:34 (22 years ago)
- Location:
- trunk/MagicSoft/Mars/manalysis
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/manalysis/MMcTriggerLvl2.cc
r2173 r2210 48 48 #include "MGeomPix.h" 49 49 #include "MGeomCamMagic.h" 50 #include "M CamDisplay.h"50 #include "MHCamera.h" 51 51 52 52 #include "MMcTrig.hxx" … … 283 283 284 284 // 285 // Use M CamDisplay class variable for avoiding to create a MCamDisplayeach285 // Use MHCamera class variable for avoiding to create a MHCamera each 286 286 // time this function is called. Also, now all the hexagons are drawn in 287 287 // the same camera pad … … 291 291 if (!fCam) 292 292 { 293 fCam = new M CamDisplay(fGeomCam);293 fCam = new MHCamera(*fGeomCam); 294 294 fCam->Draw(); 295 295 fCam->DrawPixelNumbers(); … … 325 325 { 326 326 // 327 // Use M CamDisplay class variable for avoiding to create a MCamDisplayeach327 // Use MHCamera class variable for avoiding to create a MHCamera each 328 328 // time this function is called. Also, now all the hexagons are drawn in 329 329 // the same camera pad … … 335 335 if (!fCam) 336 336 { 337 fCam = new M CamDisplay(fGeomCam);337 fCam = new MHCamera(*fGeomCam); 338 338 fCam->Draw(); 339 339 fCam->DrawPixelNumbers(); -
trunk/MagicSoft/Mars/manalysis/MMcTriggerLvl2.h
r2005 r2210 8 8 class MMcTrig; 9 9 10 class M CamDisplay;10 class MHCamera; 11 11 class MGeomCamMagic; 12 12 … … 38 38 MMcTrig *fMcTrig; 39 39 MGeomCam *fGeomCam; 40 M CamDisplay*fCam;40 MHCamera *fCam; 41 41 // MCluster *fClust; 42 42
Note:
See TracChangeset
for help on using the changeset viewer.