Changeset 463 for trunk/MagicSoft/Mars/mbase
- Timestamp:
- 01/11/01 12:54:21 (24 years ago)
- Location:
- trunk/MagicSoft/Mars/mbase
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mbase/MParList.cc
r458 r463 54 54 // check if the object (you want to add) exists 55 55 // 56 56 57 if (!obj) return kTRUE; 57 58 … … 97 98 void MParList::Print(Option_t *t) 98 99 { 99 // 100 // print some information about the current status of MParList 101 // 102 cout << "ParList: " << this->GetName() << " <" << this->GetTitle() << ">" << endl; 103 cout << endl; 100 // 101 // print some information about the current status of MParList 102 // 103 cout << "ParList: " << this->GetName() << " <" << this->GetTitle() << ">" << endl; 104 cout << endl; 105 104 106 } 105 107 -
trunk/MagicSoft/Mars/mbase/MReadTree.cc
r458 r463 142 142 // get entry 143 143 // 144 fTree->GetEntry(fNumEntry/*++*/); 144 fTree->GetEntry(fNumEntry ); 145 146 fNumEntry ++ ; 147 145 148 return kTRUE; 146 149 } -
trunk/MagicSoft/Mars/mbase/MReadTree.h
r454 r463 15 15 TTree *fTree; // Pointer to tree 16 16 17 UInt_t fNumEntry; // N amber of actual entry17 UInt_t fNumEntry; // Number of actual entry 18 18 UInt_t fNumEntries; // Number of Events in Tree 19 19 … … 28 28 Bool_t PostProcess(); 29 29 30 // Bool_t GetEvent(Int_t num ) ; 31 30 32 Bool_t DecEventNum(UInt_t dec=1); // decrease number of event (position in tree) 31 33 Bool_t IncEventNum(UInt_t inc=1); // increase number of event (position in tree) -
trunk/MagicSoft/Mars/mbase/Makefile
r454 r463 78 78 $(LIB): $(OBJS) BaseCint.o 79 79 @echo " - Building Library $(LIB) ... " 80 @$(AR) $(LIB) *.o80 $(AR) $(LIB) *.o 81 81 82 82 BaseCint.cc: $(HEADERS) … … 84 84 @echo " - Generating dictionary BaseCint.cc ..." 85 85 86 @$(ROOTSYS)/bin/rootcint -f BaseCint.cc \86 $(ROOTSYS)/bin/rootcint -f BaseCint.cc \ 87 87 -c $(INCLUDES) $(HEADERS) BaseIncl.h BaseLinkDef.h 88 88
Note:
See TracChangeset
for help on using the changeset viewer.