Changeset 713 for trunk/MagicSoft


Ignore:
Timestamp:
03/30/01 13:21:01 (23 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Makefile

    r712 r713  
    6262
    6363# 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)
    6571        @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 $@
    6773
    6874$(SOLIB): $(LIBRARIES) $(OBJS) $(HEADERS) MCint.o
  • trunk/MagicSoft/Mars/manalysis/MHillas.cc

    r703 r713  
    99/////////////////////////////////////////////////////////////////////////////
    1010#include "MHillas.h"
     11
     12#include <math.h>
    1113
    1214#include <TEllipse.h>
  • trunk/MagicSoft/Mars/mhist/MHFadcCam.h

    r712 r713  
    3838    TH1F *GetHistLo(UInt_t i)  { return (*this)[i]->GetHistLo(); }
    3939
    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(); }
    4245
    43     void Draw(UInt_t i) { (*this)[i]->Draw(); }
     46    void DrawPix(UInt_t i)    { (*this)[i]->Draw(); }
    4447
    45     Int_t GetEntries()
    46     {
    47         return fArray->GetEntries() ;
    48     }
     48    Int_t GetEntries()         { return fArray->GetEntries(); }
    4949
    5050    ClassDef(MHFadcCam, 1) // A list of histograms storing the Fadc spektrum of one pixel
  • trunk/MagicSoft/Mars/mhist/MHHillas.cc

    r712 r713  
    88
    99#include "MHHillas.h"
     10
     11#include <math.h>
    1012
    1113#include <TH1.h>
Note: See TracChangeset for help on using the changeset viewer.