Changeset 17 in Sophya
- Timestamp:
- Jun 3, 1996, 12:42:27 PM (29 years ago)
- Location:
- trunk/SophyaPI/PI
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaPI/PI/Makefile
r11 r17 46 46 else 47 47 FFLAGS := -I${INC} -D${MACHEROSD} 48 CPPFLAGS := -I${INC} -D${MACHEROSD} 48 CFLAGS := -g -O -Wall -Wpointer-arith \ 49 -Wmissing-prototypes -Wsynth -I$(INC) 50 CXXFLAGS := $(CFLAGS) -I$(CXI) 49 51 endif 50 52 AR := /usr/bin/ar 51 53 ARFLAGS := -rcs 54 52 55 53 56 ifeq ($(CC), gcc) -
trunk/SophyaPI/PI/pihisto.cc
r9 r17 29 29 double xmax = (mHisto->XMax()); 30 30 31 double ymax = (*mHisto)(mHisto->IMax())*1.2;32 double ymin = 0;31 double ymax = mHisto->VMax()*1.2; 32 double ymin = mHisto->VMin(); 33 33 34 34 mDrawWdg->SetLimits(xmin, xmax, ymin, ymax);
Note:
See TracChangeset
for help on using the changeset viewer.