Changeset 712 for trunk/MagicSoft
- Timestamp:
- 03/30/01 12:08:08 (24 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 15 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Makefile
r710 r712 62 62 63 63 # Use $(CXX) -v ... for a more verbose output 64 $(PROGRAMS): $(LIBRARIES) $(OBJS)$(HEADERS) MCint.o $(PROGRAMS:=.o)64 $(PROGRAMS): $(LIBRARIES) mars.so $(HEADERS) MCint.o $(PROGRAMS:=.o) 65 65 @echo " Linking $@ ..." 66 $(CXX) $(CXXFLAGS) $@.o $(OBJS)$(MARS_LIB) MCint.o $(ROOTGLIBS) -o $@66 $(CXX) $(CXXFLAGS) $@.o lib/mars.so $(MARS_LIB) MCint.o $(ROOTGLIBS) -o $@ 67 67 68 68 $(SOLIB): $(LIBRARIES) $(OBJS) $(HEADERS) MCint.o -
trunk/MagicSoft/Mars/mhist/MFillHFadc.h
r711 r712 25 25 Bool_t Process() ; 26 26 27 ClassDef(MFillHFadc, 0) // Task to fill a MHistosAdc Container with data27 ClassDef(MFillHFadc, 0) // Task to fill the fadc data into histograms 28 28 29 29 }; -
trunk/MagicSoft/Mars/mhist/MFillHHillas.h
r710 r712 25 25 Bool_t Process() ; 26 26 27 ClassDef(MFillHHillas, 0) // Task to fill the Hillas histograms 28 27 ClassDef(MFillHHillas, 0) // Task to fill the Hillas parameters into histograms 29 28 }; 30 29 -
trunk/MagicSoft/Mars/mhist/MFillHStarMap.h
r710 r712 25 25 Bool_t Process() ; 26 26 27 ClassDef(MFillHStarMap, 0) // Task to fill the Hillas histograms27 ClassDef(MFillHStarMap, 0) // Task to fill a 2-dim histogram by the Hillas parameters 28 28 29 29 }; -
trunk/MagicSoft/Mars/mhist/MHFadcCam.h
r710 r712 48 48 } 49 49 50 ClassDef(MHFadcCam, 1) // list of Histograms with ADC spectra50 ClassDef(MHFadcCam, 1) // A list of histograms storing the Fadc spektrum of one pixel 51 51 }; 52 52 -
trunk/MagicSoft/Mars/mhist/MHFadcPix.h
r711 r712 31 31 void Draw(Option_t *opt=NULL); 32 32 33 ClassDef(MHFadcPix, 1) 33 ClassDef(MHFadcPix, 1) // Conatiner to hold two histograms container spektrums for the lo-/hi gain of one pixel 34 34 }; 35 35 -
trunk/MagicSoft/Mars/mhist/MHHillas.cc
r710 r712 32 32 33 33 // 34 // loop over all Pixels and create two histograms 35 // one for the Low and one for the High gain 36 // connect all the histogram with the container fHist 34 // loop over all Pixels and create two histograms 35 // one for the Low and one for the High gain 36 // connect all the histogram with the container fHist 37 // 38 // FIXME! Make the histograms looking that they can be used for 39 // presentations (axis title, ...) 37 40 // 38 41 fAlpha = new TH1F("Alpha [deg]", "Alpha of Hillas", 90, 0, 90); -
trunk/MagicSoft/Mars/mhist/MHHillas.h
r710 r712 34 34 void Draw(Option_t *opt=NULL); 35 35 36 ClassDef(MHHillas, 1) // list of Histograms with ADC spectra36 ClassDef(MHHillas, 1) // Container which holds hostograms for the Hillas parameters 37 37 }; 38 38 -
trunk/MagicSoft/Mars/mhist/MHStarMap.cc
r710 r712 2 2 // 3 3 // MHStarMap 4 // 5 // This class contains a 2-dimensional histogram. It should show some 6 // kind of star map. The algorith which calculates the star map 7 // from the Hillas parameters (Fill) can be enhanced. 4 8 // 5 9 /////////////////////////////////////////////////////////////////////// -
trunk/MagicSoft/Mars/mhist/MHStarMap.h
r710 r712 32 32 void Draw(Option_t *opt=NULL); 33 33 34 ClassDef(MHStarMap, 1) // list of Histograms with ADC spectra34 ClassDef(MHStarMap, 1) // Container to hold 2-dim histogram (starmap) 35 35 }; 36 36 -
trunk/MagicSoft/Mars/mmontecarlo/MCollArea.h
r710 r712 1 #ifndef __MCollArea__2 #define __MCollArea__1 #ifndef MCOLLAREA_H 2 #define MCOLLAREA_H 3 3 4 #ifndef MAGIC_H 5 #include "MAGIC.h" 6 #endif 7 #ifndef MPARCONTAINER_H 4 8 #include "MParContainer.h" 9 #endif 5 10 6 #include <TH2.h> 11 // 12 // because of some strange reason this cannot be put into MonteCarloIncl 13 // 14 #ifndef TH1_H 15 #include <TH1.h> 16 #endif 17 18 class TH2D; 7 19 8 20 class MCollArea : public MParContainer { -
trunk/MagicSoft/Mars/mmontecarlo/MCollAreaTrigger.cc
r708 r712 65 65 // 66 66 67 fCollArea->Calc ulateEffi() ;67 fCollArea->CalcEfficiency() ; 68 68 69 69 return kTRUE ; -
trunk/MagicSoft/Mars/mmontecarlo/MonteCarloIncl.h
r686 r712 1 1 #ifndef __CINT__ 2 2 3 #include "MParContainer.h"4 5 3 #endif // __CINT__ -
trunk/MagicSoft/Mars/mraw/MRawEvtPixelIter.cc
r664 r712 14 14 // // pixel.GetPixelId(); 15 15 // // pixel.GetHiGainFadcSamples()[i]; // i is the number of the slice 16 // // pixel. IsLoGain();// check if pixel has16 // // pixel.HasLoGain(); // check if pixel has 17 17 // // pixel.GetLoGainFadcSamples()[i]; // i is the number of the slice 18 18 // … … 123 123 // return the sum of the lo gain samples of the present pixel 124 124 // 125 if (! IsLoGain())125 if (!HasLoGain()) 126 126 return 0; 127 127 -
trunk/MagicSoft/Mars/mraw/MRawEvtPixelIter.h
r698 r712 66 66 ULong_t GetSumHiGainFadcSamples() const; 67 67 68 Bool_t IsLoGain() const68 Bool_t HasLoGain() const 69 69 { 70 70 // … … 80 80 // for the actual pixel, else return zero 81 81 // 82 return IsLoGain() ? fLoGainPos : NULL;82 return HasLoGain() ? fLoGainPos : NULL; 83 83 } 84 84
Note:
See TracChangeset
for help on using the changeset viewer.