Ignore:
Timestamp:
01/11/01 12:54:21 (24 years ago)
Author:
harald
Message:
The first implementation of a gui to test the data of Octobertest
was implemented. Therefore the two subdirs mgui and mdatacheck
were introduced. The program for the gui is called -> mars <-.
Location:
trunk/MagicSoft/Mars/mbase
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mbase/MParList.cc

    r458 r463  
    5454  //  check if the object (you want to add) exists
    5555  //
     56
    5657  if (!obj) return kTRUE;
    5758
     
    9798void MParList::Print(Option_t *t)
    9899{
    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 
    104106}
    105107
  • trunk/MagicSoft/Mars/mbase/MReadTree.cc

    r458 r463  
    142142    // get entry
    143143    //
    144     fTree->GetEntry(fNumEntry/*++*/);
     144    fTree->GetEntry(fNumEntry );
     145
     146    fNumEntry ++ ;
     147
    145148    return kTRUE;
    146149}
  • trunk/MagicSoft/Mars/mbase/MReadTree.h

    r454 r463  
    1515    TTree  *fTree;       // Pointer to tree
    1616
    17     UInt_t  fNumEntry;   // Namber of actual entry
     17    UInt_t  fNumEntry;   // Number of actual entry
    1818    UInt_t  fNumEntries; // Number of Events in Tree
    1919
     
    2828    Bool_t PostProcess();
    2929
     30    //    Bool_t GetEvent(Int_t num ) ;
     31
    3032    Bool_t DecEventNum(UInt_t dec=1); // decrease number of event (position in tree)
    3133    Bool_t IncEventNum(UInt_t inc=1); // increase number of event (position in tree)
  • trunk/MagicSoft/Mars/mbase/Makefile

    r454 r463  
    7878$(LIB): $(OBJS) BaseCint.o
    7979        @echo " - Building Library $(LIB) ... "
    80         @$(AR) $(LIB) *.o
     80        $(AR) $(LIB) *.o
    8181
    8282BaseCint.cc: $(HEADERS)
     
    8484        @echo " - Generating dictionary BaseCint.cc ..."
    8585
    86         @$(ROOTSYS)/bin/rootcint -f BaseCint.cc \
     86        $(ROOTSYS)/bin/rootcint -f BaseCint.cc \
    8787        -c $(INCLUDES) $(HEADERS) BaseIncl.h BaseLinkDef.h
    8888
Note: See TracChangeset for help on using the changeset viewer.