Changeset 2858
- Timestamp:
- 01/20/04 15:03:28 (21 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r2857 r2858 4 4 5 5 -*-*- END OF LINE -*-*- 6 7 2004/01/20: Thomas Bretz 8 9 * Makefile: 10 - replaced 'make' by '$(MAKE)' 11 12 * Makefile.rules: 13 - added Makefile itself to dependencies 14 15 * mbase/MTask.cc: 16 - added comment about ReInit 17 18 * mhbase/MH.cc: 19 - do not clear pad in DrawClone if 'same' option given 20 21 * mhist/MHVsTime.cc: 22 - evaluate 'same' option 23 24 6 25 7 26 2004/01/20: Abelardo moralejo … … 11 30 fHPCharge, fHPTime. 12 31 13 * manalysis/MCerPhotPix.h 32 * manalysis/MCerPhotPix.h: 14 33 - Changed position of declaration of fIsSaturated to be the last 15 34 private variable. Otherwise, since in the constructor it is … … 18 37 19 38 39 20 40 2004/01/20: Markus Gaug 21 * mcalib/Makefile 22 * manalysis/Makefile 41 * mcalib/Makefile, manalysis/Makefile: 23 42 - include directory ../mtools 24 43 … … 27 46 28 47 48 29 49 2004/01/19: Markus Gaug 30 50 … … 58 78 - Modified way to change the fit function 59 79 - incorporate option to exclude pixels from configuration file 80 60 81 61 82 -
trunk/MagicSoft/Mars/Makefile
r2800 r2858 105 105 $(LIBRARIES): 106 106 @echo " Creating lib$@:" 107 (cd $*; make; cd ..; mv $*/$@ lib/lib$@)107 (cd $*; $(MAKE); cd ..; mv $*/$@ lib/lib$@) 108 108 109 109 $(MRPROPERS): 110 110 @echo " Doing Mr.Proper in $(@:.mrproper=)" 111 (cd $(@:.mrproper=); ( makemrproper > /dev/null); cd ..;)111 (cd $(@:.mrproper=); ($(MAKE) mrproper > /dev/null); cd ..;) 112 112 113 113 $(CLEANERS): 114 114 @echo "Cleaning $(@:.clean=):" 115 (cd $(@:.clean=); makeclean; cd ..;)115 (cd $(@:.clean=); $(MAKE) clean; cd ..;) 116 116 117 117 dox: $(SOLIB) -
trunk/MagicSoft/Mars/Makefile.rules
r2800 r2858 13 13 14 14 %.d: 15 @echo " - Generating depend ancies" $@15 @echo " - Generating dependencies" $@ 16 16 $(ROOTSYS)/bin/rmkdepend -f- -Y -w 3000 -- $(INCLUDES) -- $(SRCFILES) 2> /dev/null | \ 17 sed 's/^\(.*\).o:/$@ \1.o:/' > $@ 17 sed 's/^\(.*\).o:/$@ \1.o:/' > $@ 18 echo "$@: Makefile" >> $@ 18 19 19 20 %.o: %.cxx -
trunk/MagicSoft/Mars/mbase/MTask.cc
r2556 r2858 60 60 // return the status 'failed' return kERROR. 61 61 // 62 // - ReInit() The idea is, that 63 // a) we have one file per run 64 // b) each file contains so called run-headers which 65 // stores information 'per run', eg MRawRunHeader 66 // or the bad pixels 67 // c) this information must be evaluated somehow each 68 // time a new file is opened. 69 // 70 // If you use MReadMarsFile or MCT1ReadPreProc it is 71 // called each time a new file has been opened and the 72 // new run headers have been read before the first 73 // event of these file is preprocessed. 74 // 62 75 // - PostProcess(): executed after the eventloop. Here you can close 63 76 // output files, start display of the run parameter, -
trunk/MagicSoft/Mars/mhbase/MH.cc
r2735 r2858 838 838 p = MakeDefCanvas(this, w, h); 839 839 else 840 p->Clear(); 840 if (!option.Contains("same", TString::kIgnoreCase)) 841 p->Clear(); 841 842 842 843 gROOT->SetSelectedPad(NULL); -
trunk/MagicSoft/Mars/mhist/MHVsTime.cc
r2632 r2858 212 212 } 213 213 fGraph->GetHistogram()->SetYTitle(GetRule()); 214 fGraph->Draw("AP"); 214 215 if (!str.Contains("A")) 216 str += "A"; 217 if (!str.Contains("P")) 218 str += "P"; 219 220 if (str.Contains("same", TString::kIgnoreCase)) 221 { 222 str.ReplaceAll("same", ""); 223 str.ReplaceAll("A", ""); 224 } 225 226 fGraph->Draw(str); 215 227 if (fGraph->TestBit(kIsLogy)) 216 228 pad->SetLogy();
Note:
See TracChangeset
for help on using the changeset viewer.