Changeset 1371 in Sophya for trunk/SophyaLib/HiStats
- Timestamp:
- Jan 5, 2001, 6:07:12 PM (25 years ago)
- Location:
- trunk/SophyaLib/HiStats
- Files:
-
- 2 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaLib/HiStats/Makefile
r1118 r1371 3 3 all: $(LIB)libHiStats.a 4 4 clean: 5 rm -f $(OBJ)hisprof.o $(OBJ)histinit.o $(OBJ)histos.o $(OBJ)histos2.o $(OBJ)ntup le.o $(OBJ)xntuple.o5 rm -f $(OBJ)hisprof.o $(OBJ)histinit.o $(OBJ)histos.o $(OBJ)histos2.o $(OBJ)ntupintf.o $(OBJ)ntuple.o $(OBJ)xntuple.o 6 6 rm -f $(LIB)libHiStats.a 7 $(LIB)libHiStats.a : $(OBJ)hisprof.o $(OBJ)histinit.o $(OBJ)histos.o $(OBJ)histos2.o $(OBJ)ntup le.o $(OBJ)xntuple.o7 $(LIB)libHiStats.a : $(OBJ)hisprof.o $(OBJ)histinit.o $(OBJ)histos.o $(OBJ)histos2.o $(OBJ)ntupintf.o $(OBJ)ntuple.o $(OBJ)xntuple.o 8 8 $(ARCXX) $(ARCXXFLAGS) $@ $? 9 9 ifeq ($(CXX),cxx) … … 50 50 $(INC)ndatablock.h \ 51 51 $(INC)utilarr.h histos2.h hisprof.h ntuple.h \ 52 $(INC)ntupintf.h xntuple.h52 ntupintf.h xntuple.h 53 53 $(OBJ)histos.o: histos.cc $(INC)machdefs.h histos.h \ 54 54 $(INC)objfio.h \ … … 89 89 $(INC)ndatablock.h \ 90 90 $(INC)utilarr.h 91 $(OBJ)ntupintf.o: ntupintf.cc ntupintf.h \ 92 $(INC)machdefs.h 91 93 $(OBJ)ntuple.o: ntuple.cc $(INC)strutil.h \ 92 94 $(INC)perrors.h \ … … 96 98 $(INC)anydataobj.h \ 97 99 $(INC)ppersist.h \ 98 $(INC)gnumd5.h \ 99 $(INC)ntupintf.h \ 100 $(INC)gnumd5.h ntupintf.h \ 100 101 $(INC)dvlist.h \ 101 102 $(INC)mutyv.h … … 104 105 $(INC)pexceptions.h \ 105 106 $(INC)gnumd5.h \ 106 $(INC)perrors.h xntuple.h \ 107 $(INC)ntupintf.h \ 107 $(INC)perrors.h xntuple.h ntupintf.h \ 108 108 $(INC)dvlist.h \ 109 109 $(INC)objfio.h \ -
trunk/SophyaLib/HiStats/ntuple.cc
r1155 r1371 10 10 #define LENNAME 8 11 11 #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 */ 12 19 13 20 //++ -
trunk/SophyaLib/HiStats/objlist.list
r763 r1371 3 3 histos.o 4 4 histos2.o 5 ntupintf.o 5 6 ntuple.o 6 7 xntuple.o -
trunk/SophyaLib/HiStats/xntuple.cc
r1135 r1371 13 13 #define MAXLEN 128 14 14 #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 */ 15 23 16 24 //++
Note:
See TracChangeset
for help on using the changeset viewer.