Changeset 2196
- Timestamp:
- 06/18/03 13:46:13 (21 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r2194 r2196 25 25 * mmain/MStatusDisplay.cc: 26 26 - removed an unsused variable 27 28 * Makefile.conf.osf1, Makefile.conf.osf5.1: 29 - added definitions for __USE_STD_IOSTREAM and R__ANSISTREAM 30 tp be able to compile on Alphas again 31 32 * manalysis/MCT1PadONOFF.cc: 33 - included math.h 34 - commented out some code to be able to compile on Alpha - FIXME 35 36 * mbase/MDirIter.h: 37 - fixed a bug in the definition of MatchFilter 38 27 39 28 40 -
trunk/MagicSoft/Mars/Makefile.conf.osf1
r2054 r2196 25 25 OPTIM = -O2 -ieee -arch host -lpthread 26 26 DEBUG = -g -w0 -msg_display_tag -msg_disable castqualtyp,undpreid,unrfunprm,extrasemi,intconlosbit,nonfundec,partovrd,stoclsnotfirst,boolexprconst 27 ARCHDEF = -D__OSF__ 27 ARCHDEF = -D__OSF__ -D__USE_STD_IOSTREAM -DR__ANSISTREAM 28 28 29 29 MARS_LIB = -Llib $(SUBDIRS/*/-l&) $(MARSLIBS) -
trunk/MagicSoft/Mars/Makefile.conf.osf5.1
r2054 r2196 25 25 OPTIM = -O2 -ieee -arch host 26 26 DEBUG = -g3 -w0 -msg_display_tag -msg_disable castqualtyp,undpreid,unrfunprm,extrasemi,intconlosbit,nonfundec,partovrd,stoclsnotfirst,boolexprconst 27 ARCHDEF = -D__OSF__ 27 ARCHDEF = -D__OSF__ -D__USE_STD_IOSTREAM -DR__ANSISTREAM 28 28 29 29 MARS_LIB = -Llib $(SUBDIRS/*/-l&) $(MARSLIBS) -
trunk/MagicSoft/Mars/manalysis/MCT1PadONOFF.cc
r2175 r2196 64 64 #include "MCT1PadONOFF.h" 65 65 66 #include <math.h> 66 67 #include <stdio.h> 67 68 … … 1155 1156 delete nblind; 1156 1157 1157 1158 #warn Code commented out due no compilation errors on Alpha OSF (tgb) 1159 /* 1158 1160 // throw the Id of numBlind different pixels in this event 1159 1161 TH1D *hblind; … … 1190 1192 1191 1193 } 1192 1194 */ 1193 1195 //****************************************************************** 1194 1196 // has the event to be padded ? -
trunk/MagicSoft/Mars/mbase/MDirIter.h
r2180 r2196 20 20 Bool_t Check(const TString n) const; 21 21 Int_t IsDir(const char *dir) const; 22 Bool_t MatchFilter(const TString &n , const TString &n) const;22 Bool_t MatchFilter(const TString &name, const TString &filter) const; 23 23 TString ConcatFileName(const char *dir, const char *name) const; 24 24 void PrintEntry(const TObject &o) const;
Note:
See TracChangeset
for help on using the changeset viewer.