Changeset 1439 for trunk/MagicSoft
- Timestamp:
- 07/25/02 10:20:43 (22 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r1434 r1439 1 1 -*-*- END -*-*- 2 3 4 2002/07/25: Thomas Bretz 5 6 * mtools, mtools/Makefile, mtools/ToolsLinkDef.h, mtools/ToolsIncl.h: 7 - added 8 9 * mgeom, mgeom/Makefile, mgeom/GeomLinkDef.h, mgeom/GeomIncl.h: 10 - added 11 12 * Makefile: 13 - mtools added 14 - mgeom added 15 16 * mtools/MagicCivilization.[h,cc], mtools/MagicDomino.[h,cc], 17 mtools/MagicShow.[h,cc], mtools/MagicSnake.[h,cc]: 18 - added 19 20 * mgui/MineSweeper.[h,cc]: 21 - moved to mtools 22 23 * mgui/MGeom*.[h,cc]: 24 - moved to mgeom 25 26 * mgeom/MGeomCamMagic.cc: 27 - corrected 48(!) wrong entries in the Next Neighbor table 28 29 * mmain/Makefile, eventdisp/Makefile: 30 - added mgeom 31 32 * mgui/Makefile, mgui/LinkDef.h, mhist/Makefile, manalysis/Makefile: 33 - removed MGeom* and MineSweeper 34 35 * macros/rootlogon.C: 36 - added new include paths 37 38 * manalysis/MCerPhotEvt.cc, mgeom/MGeomCam.cc: 39 - removed include of MHexagon 40 41 2 42 3 43 2002/07/23: Thomas Bretz -
trunk/MagicSoft/Mars/Makefile
r1406 r1439 37 37 SUBDIRS = mmain \ 38 38 mmc \ 39 mgui \40 39 manalysis \ 41 40 mfileio \ … … 47 46 mdata \ 48 47 mfilter \ 48 mtools \ 49 mgui \ 50 mgeom \ 49 51 mraw 50 52 -
trunk/MagicSoft/Mars/manalysis/Makefile
r1438 r1439 50 50 MCerPhotCalc.cc \ 51 51 MCerPhotCalc2.cc \ 52 MImageFit.cc \53 52 MPedCalcPedRun.cc \ 54 53 MBlindPixels.cc \ -
trunk/MagicSoft/Mars/mhist/Makefile
r1438 r1439 56 56 MHMcEnergyImpact.cc \ 57 57 MHMcRate.cc \ 58 MHMcIntRate.cc \ 59 MHMcDifRate.cc \ 58 60 MHThetabarTime.cc \ 59 61 MHThetabarTheta.cc \ -
trunk/MagicSoft/Mars/mtools/MagicCivilization.cc
r1435 r1439 438 438 } 439 439 440 char *MagicCivilization::GetObjectInfo(Int_t px, Int_t py) const441 {442 cout << "GET " << px << " " << py << endl;443 return 0;444 } -
trunk/MagicSoft/Mars/mtools/MagicCivilization.h
r1435 r1439 30 30 kHasFlag = BIT(15), 31 31 kHasCreation = BIT(16), 32 kUserBits = 0x0000ff00 ,// 14-23 are allowed32 kUserBits = 0x0000ff00 // 14-23 are allowed 33 33 }; 34 34 … … 76 76 void Reset(); //*MENU* 77 77 78 char *MagicCivilization::GetObjectInfo(Int_t px, Int_t py) const;79 80 78 ClassDef(MagicCivilization, 0) // Tool to visualize next neighbours 81 79 }; -
trunk/MagicSoft/Mars/mtools/MagicShow.h
r1435 r1439 28 28 { 29 29 kBackground = 50, 30 kUserBits = 0x0000ff00 ,// 14-23 are allowed30 kUserBits = 0x0000ff00 // 14-23 are allowed 31 31 32 32 }; -
trunk/MagicSoft/Mars/mtools/MagicSnake.cc
r1435 r1439 175 175 } 176 176 177 void MagicSnake::Pause(Bool_t yes =kTRUE)177 void MagicSnake::Pause(Bool_t yes) 178 178 { 179 179 if (yes && !fPaused) -
trunk/MagicSoft/Mars/mtools/MagicSnake.h
r1435 r1439 42 42 kHasTransport = BIT(18), 43 43 kHasDoor = BIT(19), 44 kUserBits = 0x0000ff00 ,// 14-23 are allowed44 kUserBits = 0x0000ff00 // 14-23 are allowed 45 45 46 46 }; -
trunk/MagicSoft/Mars/mtools/Makefile
r1435 r1439 22 22 # connect the include files defined in the config.mk file 23 23 # 24 INCLUDES = -I. -I../mbase -I../mgui 24 INCLUDES = -I. -I../mbase -I../mgui -I../mgeom 25 25 26 26 #------------------------------------------------------------------------------
Note:
See TracChangeset
for help on using the changeset viewer.