Changeset 7780 for trunk


Ignore:
Timestamp:
07/06/06 10:07:26 (18 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r7778 r7780  
    1818
    1919                                                 -*-*- END OF LINE -*-*-
     20
     21 2006/07/06 Thomas Bretz
     22
     23   * Makefile.conf.linux:
     24     - removed options -Wstrict-prototypes -Wmissing-prototypes
     25       obsolete for C++
     26
     27   * mastro/MAstro.h, mgui/MCamEvent.h:
     28     - added virtual destructor to make gcc 4.1 happy
     29
     30   * mfilter/MFMagicCuts.cc, mtools/MagicJam.cc:
     31     - added includes to make gcc 4.1 happy
     32
     33   * mranforest/MRanForestCalc.cc:
     34     - added include for the compilation with root 5.10/00
     35
     36
    2037
    2138 2006/07/05 Thomas Bretz
  • trunk/MagicSoft/Mars/Makefile.conf.linux

    r4021 r7780  
    1717#  ----->>>   settings for compilation
    1818#
    19 OPTIM    = -O5 -Wall -fno-exceptions -fPIC -Wpointer-arith -Wcast-align -Wconversion -Wstrict-prototypes -Wmissing-prototypes -Woverloaded-virtual
     19OPTIM    = -O5 -Wall -fno-exceptions -fPIC -Wpointer-arith -Wcast-align -Wconversion -Woverloaded-virtual
    2020# ggc 3.2: removed -fnonnull-objects -Wtraditional -Wnested-externs
    2121DEBUG    =
  • trunk/MagicSoft/Mars/mastro/MAstro.h

    r7632 r7780  
    2121
    2222public:
     23    virtual ~MAstro() { }
     24
    2325    // Unit conversion
    2426    static Double_t Parsec2Meter()    { return 3.0856776e+16; }
  • trunk/MagicSoft/Mars/mfilter/MFMagicCuts.cc

    r7191 r7780  
    8686
    8787#include <fstream>
     88#include <errno.h>
    8889
    8990#include "MHMatrix.h"
  • trunk/MagicSoft/Mars/mgui/MCamEvent.h

    r7438 r7780  
    1111{
    1212public:
     13    virtual ~MCamEvent() { }
     14
    1315    virtual Bool_t GetPixelContent(Double_t &val, Int_t idx, const MGeomCam &cam, Int_t type=0) const = 0;
    1416    virtual void   DrawPixelContent(Int_t num) const = 0;
  • trunk/MagicSoft/Mars/mranforest/MRanForestCalc.cc

    r7710 r7780  
    3333
    3434#include <TF1.h>
     35#include <TFile.h>
    3536#include <TGraph.h>
    3637#include <TVector.h>
  • trunk/MagicSoft/Mars/mtools/MagicJam.cc

    r7343 r7780  
    5656#include <fstream>
    5757
     58#include <errno.h>
     59
    5860#include <KeySymbols.h>
    5961
Note: See TracChangeset for help on using the changeset viewer.