Changeset 574 for trunk/MagicSoft
- Timestamp:
- 01/18/01 17:10:59 (24 years ago)
- Location:
- trunk/MagicSoft
- Files:
-
- 5 added
- 1 deleted
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r543 r574 1 1 -*-*- END -*-*- 2 2000/01/18: Thomas Bretz 3 4 * Makefile: 5 - mmc-library added 6 7 * Makefile.conf.general: 8 - Added definition of __MARS__ 9 10 * Makefile.rules: 11 - Added definitions to rootcint 12 13 * Oscar added the McFormat subdir of the Monte Carlo as mmc 14 15 * mmc/MMcEvt.h: 16 - renamed to MMcEvt.hxx 17 18 * mmc/*.hxx: 19 - added necessary defintions from MDefineTrigger.h 20 21 * mmc/Makefile, mmc/McLinkDef.h, mmc/McIncl.h, mmc/readme.txt: 22 - added 23 24 * mmc/LinkDef.h: 25 - removed 26 2 27 3 28 2000/01/17: Thomas Bretz -
trunk/MagicSoft/Mars/Makefile
r546 r574 35 35 # ----->>> mars libraries 36 36 # 37 SUBDIRS = mgui mdatacheck mbase mraw 37 SUBDIRS = mgui mdatacheck mbase mraw mmc 38 38 39 39 LIBRARIES = $(SUBDIRS:=.a) … … 90 90 @cd mdatacheck; make mrproper; cd .. 91 91 @echo "cd .." 92 @echo "cd mmc" 93 @cd mmc; make mrproper; cd .. 94 @echo "cd .." 92 95 93 96 -
trunk/MagicSoft/Mars/Makefile.conf.general
r454 r574 11 11 # 12 12 13 CXXFLAGS = $(ROOTCFLAGS) $(INCLUDES) $(OPTIM) $(DEBUG) 13 DEFINES = -D__MARS__ 14 15 CXXFLAGS = $(ROOTCFLAGS) $(INCLUDES) $(OPTIM) $(DEBUG) $(DEFINES) 14 16 CFLAGS = $(CXXFLAGS) 15 17 FFLAGS = $(CXXFLAGS) -
trunk/MagicSoft/Mars/Makefile.rules
r546 r574 13 13 14 14 $(ROOTSYS)/bin/rootcint -f $(CINT)Cint.cc \ 15 -c $(INCLUDES) $( HEADERS) $(CINT)Incl.h $(CINT)LinkDef.h15 -c $(INCLUDES) $(DEFINES) $(HEADERS) $(CINT)Incl.h $(CINT)LinkDef.h 16 16 17 17 .cxx.o: -
trunk/MagicSoft/include-Classes/MMcFormat/MHeaderTrig.hxx
r480 r574 11 11 #include "TObject.h" 12 12 13 #ifndef __MARS__ 13 14 #include "../../Simulation/Detector/include-MTrigger/MTriggerDefine.h" 15 #else 16 // 17 // From the include file above 18 // 19 #define TRIGGER_PIXELS 271 20 #endif 14 21 15 22 class MHeaderTrig : public TObject { -
trunk/MagicSoft/include-Classes/MMcFormat/MMcEvt.cxx
r481 r574 1 1 #include <iostream.h> 2 #include "MMcEvt.h "2 #include "MMcEvt.hxx" 3 3 4 4 -
trunk/MagicSoft/include-Classes/MMcFormat/MMcTrig.hxx
r484 r574 11 11 #include "TObject.h" 12 12 13 #ifndef __MARS__ 13 14 #include "../../Simulation/Detector/include-MTrigger/MTriggerDefine.h" 15 #else 16 // 17 // From the include file above 18 // 19 #define TOTAL_TRIGGER_TIME 160 20 #define LEVEL1_DEAD_TIME 50 21 #define LEVEL2_DEAD_TIME 300 22 #endif 14 23 15 24 class MMcTrig : public TObject {
Note:
See TracChangeset
for help on using the changeset viewer.