Changeset 3927 for trunk/MagicSoft/Mars/mastro
- Timestamp:
- 05/01/04 16:33:16 (21 years ago)
- Location:
- trunk/MagicSoft/Mars/mastro
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mastro/MObservatory.cc
r3568 r3927 75 75 switch (name) 76 76 { 77 // BE EXTREMLY CARFEFULL CHANGING THIS CLASS! THE TRACKING SYSTEM78 // IS BASED ON IT!77 // BE EXTREMLY CARFEFULL CHANGING THIS CLASS! 78 // THE TRACKING SYSTEM IS BASED ON IT! 79 79 case kMagic1: 80 // Values taken from the GPS Receiver (avg 2 0h)81 // on 2 6/11/2003at 17h30 in the counting house82 fLatitude = MAstro::Dms2Rad(28, 45, 42. 576, '+');83 fLongitude = MAstro::Dms2Rad(17, 53, 26. 460, '-');84 fHeight = 219 6.5; // m80 // Values taken from the GPS Receiver (avg 24h) 81 // on 29/04/2004 at 17h30 in the counting house 82 fLatitude = MAstro::Dms2Rad(28, 45, 42.462, '+'); 83 fLongitude = MAstro::Dms2Rad(17, 53, 26.525, '-'); 84 fHeight = 2199.4; // m 85 85 fObservatoryName = "Observatorio del Roque de los Muchachos (Magic1)"; 86 86 break; -
trunk/MagicSoft/Mars/mastro/Makefile
r3811 r3927 9 9 include ../Makefile.conf.general 10 10 11 #------------------------------------------------------------------------------ 12 11 13 # 12 14 # Handling name of the Root Dictionary Files … … 15 17 16 18 # 17 # Library name to creatre18 #19 LIB = mastro.a20 21 #22 19 # connect the include files defined in the config.mk file 23 20 # 24 21 INCLUDES = -I. -I../mbase -I../mgeom -I../mtemp 25 26 22 # mgeom (MAstroCamera): MGeomCam, MGeomMirror 27 28 #------------------------------------------------------------------------------29 30 .SUFFIXES: .c .cc .cxx .h .hxx .o31 23 32 24 SRCFILES = MAstro.cc \ … … 36 28 MObservatory.cc 37 29 38 SRCS = $(SRCFILES)39 HEADERS = $(SRCFILES:.cc=.h)40 OBJS = $(SRCFILES:.cc=.o)41 42 30 ############################################################ 43 31 44 all: $( LIB)32 all: $(OBJS) 45 33 46 34 include ../Makefile.rules 47 35 48 #clean: rmcint rmobjs rmcore rmlib49 50 36 mrproper: clean rmbak 51 52 # @endcode53
Note:
See TracChangeset
for help on using the changeset viewer.