Changeset 1371 in Sophya for trunk/SophyaLib/HiStats


Ignore:
Timestamp:
Jan 5, 2001, 6:07:12 PM (25 years ago)
Author:
ansari
Message:

MAJ documentation, Makefile, ... - Reza 5/1/2001

Location:
trunk/SophyaLib/HiStats
Files:
2 added
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/SophyaLib/HiStats/Makefile

    r1118 r1371  
    33all: $(LIB)libHiStats.a
    44clean:
    5         rm -f $(OBJ)hisprof.o $(OBJ)histinit.o $(OBJ)histos.o $(OBJ)histos2.o $(OBJ)ntuple.o $(OBJ)xntuple.o
     5        rm -f $(OBJ)hisprof.o $(OBJ)histinit.o $(OBJ)histos.o $(OBJ)histos2.o $(OBJ)ntupintf.o $(OBJ)ntuple.o $(OBJ)xntuple.o
    66        rm -f $(LIB)libHiStats.a
    7 $(LIB)libHiStats.a : $(OBJ)hisprof.o $(OBJ)histinit.o $(OBJ)histos.o $(OBJ)histos2.o $(OBJ)ntuple.o $(OBJ)xntuple.o
     7$(LIB)libHiStats.a : $(OBJ)hisprof.o $(OBJ)histinit.o $(OBJ)histos.o $(OBJ)histos2.o $(OBJ)ntupintf.o $(OBJ)ntuple.o $(OBJ)xntuple.o
    88        $(ARCXX) $(ARCXXFLAGS) $@ $?
    99ifeq ($(CXX),cxx)
     
    5050 $(INC)ndatablock.h \
    5151 $(INC)utilarr.h histos2.h hisprof.h ntuple.h \
    52  $(INC)ntupintf.h xntuple.h
     52 ntupintf.h xntuple.h
    5353$(OBJ)histos.o: histos.cc $(INC)machdefs.h histos.h \
    5454 $(INC)objfio.h \
     
    8989 $(INC)ndatablock.h \
    9090 $(INC)utilarr.h
     91$(OBJ)ntupintf.o: ntupintf.cc ntupintf.h \
     92 $(INC)machdefs.h
    9193$(OBJ)ntuple.o: ntuple.cc $(INC)strutil.h \
    9294 $(INC)perrors.h \
     
    9698 $(INC)anydataobj.h \
    9799 $(INC)ppersist.h \
    98  $(INC)gnumd5.h \
    99  $(INC)ntupintf.h \
     100 $(INC)gnumd5.h ntupintf.h \
    100101 $(INC)dvlist.h \
    101102 $(INC)mutyv.h
     
    104105 $(INC)pexceptions.h \
    105106 $(INC)gnumd5.h \
    106  $(INC)perrors.h xntuple.h \
    107  $(INC)ntupintf.h \
     107 $(INC)perrors.h xntuple.h ntupintf.h \
    108108 $(INC)dvlist.h \
    109109 $(INC)objfio.h \
  • trunk/SophyaLib/HiStats/ntuple.cc

    r1155 r1371  
    1010#define LENNAME 8
    1111#define LENNAME1  (LENNAME+1)
     12
     13/*!
     14   \class SOPHYA::NTuple
     15   \ingroup HiStats
     16   Simple NTuple class (a Table or 2-D data set) with floating value
     17   columns.
     18*/
    1219
    1320//++
  • trunk/SophyaLib/HiStats/objlist.list

    r763 r1371  
    33histos.o
    44histos2.o
     5ntupintf.o
    56ntuple.o
    67xntuple.o
  • trunk/SophyaLib/HiStats/xntuple.cc

    r1135 r1371  
    1313#define MAXLEN 128
    1414#define BADVAL -1.e19
     15
     16/*!
     17   \class SOPHYA::XNTuple
     18   \ingroup HiStats
     19   NTuple class (a Table or 2-D data set) with the possibility of having
     20   columns with int, float or string type content. In addition, this class
     21   can handle large data sets, using swap space on disk.
     22*/
    1523
    1624//++
Note: See TracChangeset for help on using the changeset viewer.