Changeset 1027 for trunk


Ignore:
Timestamp:
11/01/01 14:56:17 (23 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft
Files:
10 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Makefile

    r1018 r1027  
    9393
    9494mrproper:       clean rmbak
    95         @echo "Removing backup files in macros/"
     95        @echo "Removing backup files in macros"
    9696        @rm -f macros/*~
    9797        @echo "Removing htmldoc-tree"
     
    123123tar:    mrproper
    124124        @echo "Making tar-file"
    125         @tar -cvf ../mars.tar --exclude=Root .rootrc *
     125        @tar cvf ../mars.tar --exclude=Root .rootrc *
    126126        @gzip -9 ../mars.tar
    127127
  • trunk/MagicSoft/Mars/Makefile.conf.osf1

    r1018 r1027  
    2424
    2525OPTIM    = -O2 -ieee -arch host
    26 DEBUG    = -g  -w0 -msg_display_tag -msg_disable castqualtyp,undpreid,unrfunprm,extrasemi
     26DEBUG    = -g  -w0 -msg_display_tag -msg_disable castqualtyp,undpreid,unrfunprm,extrasemi,intconlosbit,nonfundec,partovrd,stoclsnotfirst
    2727ARCHDEF  = -D__OSF__
    2828
  • trunk/MagicSoft/Mars/mbase/MAGIC.h

    r1018 r1027  
    3737//This will be fixed soon. It doesn't work with Alphas at the moment
    3838class MLog;
    39 #if !defined __CINT__ || defined __LINUX__
     39#if !defined (__CINT__) || defined (__LINUX__)
    4040extern MLog gLog;
    4141#endif
  • trunk/MagicSoft/Mars/mbase/MEvtLoop.cc

    r1020 r1027  
    9797//  list is calles by the destructor of MEvtLoop, otherwise not.
    9898//
    99 inline void MEvtLoop::SetOwner(Bool_t enable=kTRUE)
     99void MEvtLoop::SetOwner(Bool_t enable)
    100100{
    101101    enable ? SetBit(kIsOwner) : ResetBit(kIsOwner);
  • trunk/MagicSoft/Mars/mbase/MParList.cc

    r1024 r1027  
    111111//  by the destructor
    112112//
    113 inline void MParList::SetOwner(Bool_t enable)
     113void MParList::SetOwner(Bool_t enable)
    114114{
    115115    enable ? SetBit(kIsOwner) : ResetBit(kIsOwner);
  • trunk/MagicSoft/Mars/mbase/MTask.cc

    r1003 r1027  
    148148// If Process is executed, the execution counter is increased.
    149149//
    150 inline Bool_t MTask::CallProcess()
     150Bool_t MTask::CallProcess()
    151151{
    152152    //
  • trunk/MagicSoft/Mars/mbase/MTaskList.cc

    r1023 r1027  
    100100//  by the destructor
    101101//
    102 inline void MTaskList::SetOwner(Bool_t enable)
     102void MTaskList::SetOwner(Bool_t enable)
    103103{
    104104    enable ? SetBit(kIsOwner) : ResetBit(kIsOwner);
  • trunk/MagicSoft/Mars/mgui/MGeomCam.cc

    r1003 r1027  
    7979// Return the i-th pixel object
    8080//
    81 inline MGeomPix &MGeomCam::operator[](Int_t i)
     81MGeomPix &MGeomCam::operator[](Int_t i)
    8282{
    8383    return *(MGeomPix*)fPixels->At(i);
     
    8888// Return the i-th pixel object
    8989//
    90 inline MGeomPix &MGeomCam::operator[](Int_t i) const
     90MGeomPix &MGeomCam::operator[](Int_t i) const
    9191{
    9292    return *(MGeomPix*)fPixels->At(i);
  • trunk/MagicSoft/Mars/mhist/MHFadcPix.cc

    r1004 r1027  
    8181
    8282// --------------------------------------------------------------------------
    83 inline void MHFadcPix::FillHi(Byte_t i)
     83void MHFadcPix::FillHi(Byte_t i)
    8484{
    8585    fHistHi->Fill(i);
     
    8787
    8888// --------------------------------------------------------------------------
    89 inline void MHFadcPix::FillLo(Byte_t i)
     89void MHFadcPix::FillLo(Byte_t i)
    9090{
    9191    fHistLo->Fill(i);
     
    9393
    9494// --------------------------------------------------------------------------
    95 inline void MHFadcPix::DrawHi()
     95void MHFadcPix::DrawHi()
    9696{
    9797    fHistHi->Draw();
     
    9999
    100100// --------------------------------------------------------------------------
    101 inline void MHFadcPix::DrawLo()
     101void MHFadcPix::DrawLo()
    102102{
    103103    fHistLo->Draw();
  • trunk/MagicSoft/include-Classes/MMcFormat/MMcTrig.cxx

    r1004 r1027  
    5050}
    5151
    52 inline void MMcTrig::SetTime(Float_t t, Int_t i)
     52void MMcTrig::SetTime(Float_t t, Int_t i)
    5353{
    5454    if (i>TOTAL_TRIGGER_TIME/LEVEL1_DEAD_TIME+1  || i<1)
Note: See TracChangeset for help on using the changeset viewer.