Changeset 1027 for trunk/MagicSoft/Mars
- Timestamp:
- 11/01/01 14:56:17 (23 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Makefile
r1018 r1027 93 93 94 94 mrproper: clean rmbak 95 @echo "Removing backup files in macros /"95 @echo "Removing backup files in macros" 96 96 @rm -f macros/*~ 97 97 @echo "Removing htmldoc-tree" … … 123 123 tar: mrproper 124 124 @echo "Making tar-file" 125 @tar -cvf ../mars.tar --exclude=Root .rootrc *125 @tar cvf ../mars.tar --exclude=Root .rootrc * 126 126 @gzip -9 ../mars.tar 127 127 -
trunk/MagicSoft/Mars/Makefile.conf.osf1
r1018 r1027 24 24 25 25 OPTIM = -O2 -ieee -arch host 26 DEBUG = -g -w0 -msg_display_tag -msg_disable castqualtyp,undpreid,unrfunprm,extrasemi 26 DEBUG = -g -w0 -msg_display_tag -msg_disable castqualtyp,undpreid,unrfunprm,extrasemi,intconlosbit,nonfundec,partovrd,stoclsnotfirst 27 27 ARCHDEF = -D__OSF__ 28 28 -
trunk/MagicSoft/Mars/mbase/MAGIC.h
r1018 r1027 37 37 //This will be fixed soon. It doesn't work with Alphas at the moment 38 38 class MLog; 39 #if !defined __CINT__ || defined __LINUX__39 #if !defined (__CINT__) || defined (__LINUX__) 40 40 extern MLog gLog; 41 41 #endif -
trunk/MagicSoft/Mars/mbase/MEvtLoop.cc
r1020 r1027 97 97 // list is calles by the destructor of MEvtLoop, otherwise not. 98 98 // 99 inline void MEvtLoop::SetOwner(Bool_t enable=kTRUE)99 void MEvtLoop::SetOwner(Bool_t enable) 100 100 { 101 101 enable ? SetBit(kIsOwner) : ResetBit(kIsOwner); -
trunk/MagicSoft/Mars/mbase/MParList.cc
r1024 r1027 111 111 // by the destructor 112 112 // 113 inlinevoid MParList::SetOwner(Bool_t enable)113 void MParList::SetOwner(Bool_t enable) 114 114 { 115 115 enable ? SetBit(kIsOwner) : ResetBit(kIsOwner); -
trunk/MagicSoft/Mars/mbase/MTask.cc
r1003 r1027 148 148 // If Process is executed, the execution counter is increased. 149 149 // 150 inlineBool_t MTask::CallProcess()150 Bool_t MTask::CallProcess() 151 151 { 152 152 // -
trunk/MagicSoft/Mars/mbase/MTaskList.cc
r1023 r1027 100 100 // by the destructor 101 101 // 102 inlinevoid MTaskList::SetOwner(Bool_t enable)102 void MTaskList::SetOwner(Bool_t enable) 103 103 { 104 104 enable ? SetBit(kIsOwner) : ResetBit(kIsOwner); -
trunk/MagicSoft/Mars/mgui/MGeomCam.cc
r1003 r1027 79 79 // Return the i-th pixel object 80 80 // 81 inlineMGeomPix &MGeomCam::operator[](Int_t i)81 MGeomPix &MGeomCam::operator[](Int_t i) 82 82 { 83 83 return *(MGeomPix*)fPixels->At(i); … … 88 88 // Return the i-th pixel object 89 89 // 90 inlineMGeomPix &MGeomCam::operator[](Int_t i) const90 MGeomPix &MGeomCam::operator[](Int_t i) const 91 91 { 92 92 return *(MGeomPix*)fPixels->At(i); -
trunk/MagicSoft/Mars/mhist/MHFadcPix.cc
r1004 r1027 81 81 82 82 // -------------------------------------------------------------------------- 83 inlinevoid MHFadcPix::FillHi(Byte_t i)83 void MHFadcPix::FillHi(Byte_t i) 84 84 { 85 85 fHistHi->Fill(i); … … 87 87 88 88 // -------------------------------------------------------------------------- 89 inlinevoid MHFadcPix::FillLo(Byte_t i)89 void MHFadcPix::FillLo(Byte_t i) 90 90 { 91 91 fHistLo->Fill(i); … … 93 93 94 94 // -------------------------------------------------------------------------- 95 inlinevoid MHFadcPix::DrawHi()95 void MHFadcPix::DrawHi() 96 96 { 97 97 fHistHi->Draw(); … … 99 99 100 100 // -------------------------------------------------------------------------- 101 inlinevoid MHFadcPix::DrawLo()101 void MHFadcPix::DrawLo() 102 102 { 103 103 fHistLo->Draw();
Note:
See TracChangeset
for help on using the changeset viewer.