- Timestamp:
- 03/30/01 13:21:01 (24 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Makefile
r712 r713 62 62 63 63 # Use $(CXX) -v ... for a more verbose output 64 $(PROGRAMS): $(LIBRARIES) mars.so $(HEADERS) MCint.o $(PROGRAMS:=.o) 64 # 65 # We could link mars.so instead of all libraries. This would need 66 # some MBs less space on the HD. But this means, that the Shared 67 # Library Path in your system must be set properly to be able to start 68 # 'mars' 69 # 70 $(PROGRAMS): $(LIBRARIES) $(OBJS) $(HEADERS) MCint.o $(PROGRAMS:=.o) 65 71 @echo " Linking $@ ..." 66 $(CXX) $(CXXFLAGS) $@.o lib/mars.so$(MARS_LIB) MCint.o $(ROOTGLIBS) -o $@72 $(CXX) $(CXXFLAGS) $@.o $(OBJS) $(MARS_LIB) MCint.o $(ROOTGLIBS) -o $@ 67 73 68 74 $(SOLIB): $(LIBRARIES) $(OBJS) $(HEADERS) MCint.o -
trunk/MagicSoft/Mars/manalysis/MHillas.cc
r703 r713 9 9 ///////////////////////////////////////////////////////////////////////////// 10 10 #include "MHillas.h" 11 12 #include <math.h> 11 13 12 14 #include <TEllipse.h> -
trunk/MagicSoft/Mars/mhist/MHFadcCam.h
r712 r713 38 38 TH1F *GetHistLo(UInt_t i) { return (*this)[i]->GetHistLo(); } 39 39 40 void DrawHi(UInt_t i) { GetHistHi(i)->Draw(); } 41 void DrawLo(UInt_t i) { GetHistLo(i)->Draw(); } 40 // 41 // FIXME! This should be replaced by a Draw(Option_t)-function 42 // 43 void DrawHi(UInt_t i) { GetHistHi(i)->Draw(); } 44 void DrawLo(UInt_t i) { GetHistLo(i)->Draw(); } 42 45 43 void Draw (UInt_t i){ (*this)[i]->Draw(); }46 void DrawPix(UInt_t i) { (*this)[i]->Draw(); } 44 47 45 Int_t GetEntries() 46 { 47 return fArray->GetEntries() ; 48 } 48 Int_t GetEntries() { return fArray->GetEntries(); } 49 49 50 50 ClassDef(MHFadcCam, 1) // A list of histograms storing the Fadc spektrum of one pixel -
trunk/MagicSoft/Mars/mhist/MHHillas.cc
r712 r713 8 8 9 9 #include "MHHillas.h" 10 11 #include <math.h> 10 12 11 13 #include <TH1.h>
Note:
See TracChangeset
for help on using the changeset viewer.