- Timestamp:
- 06/24/10 07:51:15 (15 years ago)
- Location:
- tools
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
tools/ListenToArduino/ListenToArduino.cc
r225 r229 117 117 Data.updateService(); 118 118 119 usleep(atoi(Srv.GetConfig("Period", "10") ) * 1000000);119 usleep(atoi(Srv.GetConfig("Period", "10").c_str()) * 1000000); 120 120 } // while() 121 121 -
tools/Scripts/Logon
r195 r229 7 7 export DIM_HOST_NODE=$HOST.ethz.ch 8 8 if [ -z "$DIMDIR" ]; then export DIMDIR=/usr/local/dim/; fi 9 if [ -z "$QWTDIR" ]; then export QWTDIR=/usr/local/qwt/; fi 9 10 10 export LD_LIBRARY_PATH= /usr/local/qwt-5.2.0/lib:$DIMDIR/linux:$LD_LIBRARY_PATH11 export LD_LIBRARY_PATH=$QWTDIR/lib:$DIMDIR/linux:$LD_LIBRARY_PATH 11 12 export PATH=$DIMDIR/linux:$REPOS_DIR/tools/Scripts:/usr/local/Trolltech/Qt-4.4.3/bin:.:$PATH 12 13 -
tools/SkyQualityMonitor/sqm.cpp
r217 r229 34 34 // Start server and request configuration data 35 35 EvidenceServer Srv(SERVER_NAME); 36 c har *Address = Srv.GetConfig("address");37 unsigned int Port = atoi(Srv.GetConfig("port") );36 const char *Address = Srv.GetConfig("address").c_str(); 37 unsigned int Port = atoi(Srv.GetConfig("port").c_str()); 38 38 39 39 // Open socket descriptor … … 69 69 while(!Srv.ExitRequest) { 70 70 // Request measurement period 71 Period = atoi(Srv.GetConfig("period") );71 Period = atoi(Srv.GetConfig("period").c_str()); 72 72 73 73 // Write read command to socket -
tools/ddd/ddd.pro
r45 r229 6 6 TARGET = 7 7 DEPENDPATH += . 8 INCLUDEPATH += . / usr/local/qwt-5.2.0/include8 INCLUDEPATH += . /ihp/local/qwt-5.2.1/include 9 9 10 10 # Input 11 11 HEADERS += GUI.h ../../pixelmap/Pixel.h ../../pixelmap/PixelMap.h ../../drsdaq/RawDataCTX.h 12 12 SOURCES += Functions.cpp GUI.cpp ../../pixelmap/Pixel.cc ../../pixelmap/PixelMap.cc ../../drsdaq/RawDataCTX.cc 13 LIBS += -L/ usr/local/qwt-5.2.0/lib -lqwt13 LIBS += -L/ihp/local/qwt-5.2.1/lib -lqwt 14 14 QT += network
Note:
See TracChangeset
for help on using the changeset viewer.