| 1 | ##################################################################
|
|---|
| 2 | #
|
|---|
| 3 | # makefile
|
|---|
| 4 | #
|
|---|
| 5 | # @file makefile
|
|---|
| 6 | # @title Simulation of the camera and trigger logic
|
|---|
| 7 | # @author J C Gonz\'alez
|
|---|
| 8 | # @email gonzalez@mppmu.mpg.de
|
|---|
| 9 | # @date Fri Mar 12 11:51:11 MET 1999
|
|---|
| 10 | #
|
|---|
| 11 | #_______________________________________________________________
|
|---|
| 12 | #
|
|---|
| 13 | # Created: Fri Mar 12 11:51:11 MET 1999
|
|---|
| 14 | # Author: Jose Carlos Gonzalez
|
|---|
| 15 | # Purpose: Makefile for the compilation of the camera program
|
|---|
| 16 | # Notes:
|
|---|
| 17 | #
|
|---|
| 18 | #---------------------------------------------------------------
|
|---|
| 19 | #
|
|---|
| 20 | # $RCSfile: Makefile,v $
|
|---|
| 21 | # $Revision: 1.2 $
|
|---|
| 22 | # $Author: harald $
|
|---|
| 23 | # $Date: 1999-11-19 08:40:41 $
|
|---|
| 24 | #
|
|---|
| 25 | ##################################################################
|
|---|
| 26 | # @maintitle
|
|---|
| 27 |
|
|---|
| 28 | # @code
|
|---|
| 29 |
|
|---|
| 30 | INCLUDEMK = config.mk.${OSTYPE}
|
|---|
| 31 | include ${INCLUDEMK}
|
|---|
| 32 |
|
|---|
| 33 | # @endcode
|
|---|
| 34 |
|
|---|
| 35 | # @code
|
|---|
| 36 |
|
|---|
| 37 | # common flags
|
|---|
| 38 | INCLUDES = -I${INCLUDE} \
|
|---|
| 39 | -I${INCLUDE_COR} \
|
|---|
| 40 | -I${INCLUDE_MC} \
|
|---|
| 41 | -I${INCLUDE_EVITA} \
|
|---|
| 42 | -I${INCLUDE_TRIGGER} \
|
|---|
| 43 | -I${INCLUDE_REFL} \
|
|---|
| 44 | -I${INCLUDE_ROOT} \
|
|---|
| 45 | -I${INCLUDE_CPLUS}
|
|---|
| 46 |
|
|---|
| 47 | RANLIB = -L${RANLIBDIR} -lranlib
|
|---|
| 48 |
|
|---|
| 49 | # what is needed for ROOT is inside the config.mk... file
|
|---|
| 50 |
|
|---|
| 51 |
|
|---|
| 52 | # special flags
|
|---|
| 53 |
|
|---|
| 54 | osf_FORLIBS = -lUfor -lfor -lutil -lots -lm
|
|---|
| 55 | #linux_FORLIBS = -lf2c -lm /usr/lib/libc.a
|
|---|
| 56 | linux_FORLIBS = -lm -ldl
|
|---|
| 57 | #linux_FORLIBS = -lm -ldl -rdynamic
|
|---|
| 58 | generic_FORLIBS = -lm
|
|---|
| 59 |
|
|---|
| 60 | FORLIBS = ${${SYSTEM}_FORLIBS}
|
|---|
| 61 |
|
|---|
| 62 | # compilation and linking flags
|
|---|
| 63 |
|
|---|
| 64 | CXXFLAGS = -D__${SYSTEM}__ ${INCLUDES} ${OPTIM} ${DEBUG}
|
|---|
| 65 | CFLAGS = ${CXXFLAGS}
|
|---|
| 66 | FFLAGS = ${CXXFLAGS}
|
|---|
| 67 | LIBS = ${RANLIB} ${ROOTLIBS} ${ROOTGLIBS} ${GLIBS}
|
|---|
| 68 |
|
|---|
| 69 | #------------------------------------------------------------------------------
|
|---|
| 70 |
|
|---|
| 71 | #.SILENT:
|
|---|
| 72 |
|
|---|
| 73 | .SUFFIXES: .c .cxx .C .c++ .h .hxx .H .h++ .o .so .f
|
|---|
| 74 |
|
|---|
| 75 | SRCS = \
|
|---|
| 76 | ${INCLUDE_MC}/MCEventHeader.cxx \
|
|---|
| 77 | ${INCLUDE_MC}/MCCphoton.cxx \
|
|---|
| 78 | ${INCLUDE_TRIGGER}/MTrigger.cxx \
|
|---|
| 79 | ${INCLUDE_EVITA}/MRawPixel.cxx \
|
|---|
| 80 | ${INCLUDE_EVITA}/MRawEvt.cxx \
|
|---|
| 81 | ${INCLUDE_EVITA}/MMcEvt.cxx \
|
|---|
| 82 | MCamCint.cxx \
|
|---|
| 83 | MDiag.cxx \
|
|---|
| 84 | moments.cxx \
|
|---|
| 85 | creadparam.cxx \
|
|---|
| 86 | camera.cxx
|
|---|
| 87 |
|
|---|
| 88 | HEADERS = \
|
|---|
| 89 | MCEventHeader.hxx \
|
|---|
| 90 | MCCphoton.hxx \
|
|---|
| 91 | MTRigger.hxx \
|
|---|
| 92 | MRawPixel.h \
|
|---|
| 93 | MRawEvt.h \
|
|---|
| 94 | MMcEvt.h \
|
|---|
| 95 | lagrange.h \
|
|---|
| 96 | atm.h \
|
|---|
| 97 | MDiag.h \
|
|---|
| 98 | moments.h \
|
|---|
| 99 | creadparam.h \
|
|---|
| 100 | camera.h
|
|---|
| 101 |
|
|---|
| 102 | OBJS = \
|
|---|
| 103 | ${INCLUDE_MC}/MCEventHeader.o \
|
|---|
| 104 | ${INCLUDE_MC}/MCCphoton.o \
|
|---|
| 105 | ${INCLUDE_TRIGGER}/MTrigger.o \
|
|---|
| 106 | ${INCLUDE_EVITA}/MRawPixel.o \
|
|---|
| 107 | ${INCLUDE_EVITA}/MRawEvt.o \
|
|---|
| 108 | ${INCLUDE_EVITA}/MMcEvt.o \
|
|---|
| 109 | MCamCint.o \
|
|---|
| 110 | MDiag.o \
|
|---|
| 111 | MDiagdict.o \
|
|---|
| 112 | moments.o \
|
|---|
| 113 | creadparam.o \
|
|---|
| 114 | camera.o
|
|---|
| 115 |
|
|---|
| 116 | ############################################################
|
|---|
| 117 |
|
|---|
| 118 | all: ${PROGRAM}
|
|---|
| 119 |
|
|---|
| 120 | depend:
|
|---|
| 121 | @makedepend $(SRCS) $(INCLUDES) -fMakefile 2> kk.kk ; cat kk.kk
|
|---|
| 122 |
|
|---|
| 123 | doc: camera-doc
|
|---|
| 124 |
|
|---|
| 125 | camera-doc:
|
|---|
| 126 | @echo "Generating documentation for camera . . . "
|
|---|
| 127 | $(DOCUM) -latex -o camera.tex \
|
|---|
| 128 | camera.cxx camera.h \
|
|---|
| 129 | creadparam.cxx creadparam.h \
|
|---|
| 130 | moments.cxx moments.h
|
|---|
| 131 | latex "\nonstopmode\input{camera.tex}" && \
|
|---|
| 132 | makeindex camera && \
|
|---|
| 133 | latex "\nonstopmode\input{camera.tex}" && \
|
|---|
| 134 | latex "\nonstopmode\input{camera.tex}"
|
|---|
| 135 | @echo "Files camera.tex and camera.dvi generated."
|
|---|
| 136 |
|
|---|
| 137 | ${PROGRAM}: $(OBJS) MDiag.so
|
|---|
| 138 | @echo "Linking..."
|
|---|
| 139 | echo `ls -m $(OBJS)|sed 's/,/ +/g' `" + libraries => " $@
|
|---|
| 140 | $(CXX) $(CXXFLAGS) $(OBJS) $(LIBS) -o $@
|
|---|
| 141 | @echo "done."
|
|---|
| 142 |
|
|---|
| 143 | MDiagdict.o: MDiagdict.cxx MDiag.h
|
|---|
| 144 | $(CXX) $(CXXFLAGS) -I${INCLUDE_ROOT} -c MDiagdict.cxx
|
|---|
| 145 |
|
|---|
| 146 | MDiagdict.cxx: MDiag.h MDiagLinkDef.h
|
|---|
| 147 | ${ROOTSYS}/bin/rootcint -f MDiagdict.cxx -c MDiag.h MDiagLinkDef.h
|
|---|
| 148 |
|
|---|
| 149 | MDiag.o: MDiag.cxx MDiag.h
|
|---|
| 150 | $(CXX) $(CXXFLAGS) -I${INCLUDE_ROOT} -c MDiag.cxx -o MDiag.o
|
|---|
| 151 |
|
|---|
| 152 | # the following shared object library is for being loaded into ROOT using
|
|---|
| 153 | #".L MDiag.so" if the diagnostic output is to be read e.g. with a TTree viewer
|
|---|
| 154 | MDiag.so: MDiag.o MDiagdict.o
|
|---|
| 155 | $(CXX) -shared -g -I${INCLUDE_ROOT} MDiag.o MDiagdict.o -o MDiag.so
|
|---|
| 156 |
|
|---|
| 157 |
|
|---|
| 158 | MCamCint.cxx: ${INCLUDE_EVITA}/MRawPixel.h \
|
|---|
| 159 | ${INCLUDE_EVITA}/MRawEvt.h \
|
|---|
| 160 | ${INCLUDE_EVITA}/MMcEvt.h \
|
|---|
| 161 | ${INCLUDE_EVITA}/Mdefine.h
|
|---|
| 162 |
|
|---|
| 163 | @echo
|
|---|
| 164 | @echo "Generating dictionary ..."
|
|---|
| 165 | @echo
|
|---|
| 166 |
|
|---|
| 167 | @$(ROOTSYS)/bin/rootcint -f \
|
|---|
| 168 | MCamCint.cxx -c \
|
|---|
| 169 | ${INCLUDE_EVITA}/MRawPixel.h \
|
|---|
| 170 | ${INCLUDE_EVITA}/MRawEvt.h \
|
|---|
| 171 | ${INCLUDE_EVITA}/MMcEvt.h \
|
|---|
| 172 | ${INCLUDE_EVITA}/Mdefine.h \
|
|---|
| 173 | ${INCLUDE_EVITA}/LinkDef.h
|
|---|
| 174 |
|
|---|
| 175 | @echo
|
|---|
| 176 | @echo "Dictionary done"
|
|---|
| 177 | @echo
|
|---|
| 178 |
|
|---|
| 179 | .cxx.o:
|
|---|
| 180 | @echo "Compiling " $<
|
|---|
| 181 | $(CXX) $(CXXFLAGS) -c $< -o $@
|
|---|
| 182 |
|
|---|
| 183 | .c.o:
|
|---|
| 184 | @echo "Compiling " $<
|
|---|
| 185 | $(CC) $(CFLAGS) -c $< -o $@
|
|---|
| 186 |
|
|---|
| 187 | lclean:
|
|---|
| 188 | @echo "Cleanning..."
|
|---|
| 189 | @rm -f *.o core
|
|---|
| 190 |
|
|---|
| 191 | clean:
|
|---|
| 192 | @echo "Cleanning..."
|
|---|
| 193 | @rm -f $(OBJS) core
|
|---|
| 194 | @rm -f MCamCint.cxx MCamCint.h
|
|---|
| 195 |
|
|---|
| 196 | mrproper: clean
|
|---|
| 197 | @echo "Mr.Proper in action . . ."
|
|---|
| 198 | @rm -f $(PROGRAM)
|
|---|
| 199 |
|
|---|
| 200 | ctags:
|
|---|
| 201 | @echo "Creating CTAGS file . . ."
|
|---|
| 202 | @ctags -txw $(SRCS) $(HEADERS) > CTAGS
|
|---|
| 203 |
|
|---|
| 204 | etags:
|
|---|
| 205 | @echo "Creating TAGS file . . ."
|
|---|
| 206 | @etags -C $(SRCS) $(HEADERS)
|
|---|
| 207 |
|
|---|
| 208 | listsrc:
|
|---|
| 209 | @ls -m $(SRCS) $(HEADERS) | sed 's/,//g'
|
|---|
| 210 |
|
|---|
| 211 | redo: clean all
|
|---|
| 212 |
|
|---|
| 213 | cflags:
|
|---|
| 214 | @echo $(INCLUDES) $(CXXFLAGS)
|
|---|
| 215 |
|
|---|
| 216 | # @endcode
|
|---|
| 217 |
|
|---|
| 218 | # DO NOT DELETE THIS LINE -- make depend depends on it.
|
|---|
| 219 |
|
|---|
| 220 | ../include-MC/MCEventHeader.o: ../include-MC/MCEventHeader.hxx
|
|---|
| 221 | ../include-MC/MCEventHeader.o: ../include-GENERAL/Rtypes.h
|
|---|
| 222 | ../include-MC/MCEventHeader.o: /usr/include/cxx/iostream.h
|
|---|
| 223 | ../include-MC/MCEventHeader.o: /usr/include/cxx/iostream.hxx
|
|---|
| 224 | ../include-MC/MCEventHeader.o: /usr/include/cxx/compnent.hxx
|
|---|
| 225 | ../include-MC/MCEventHeader.o: /usr/include/cxx/iostream_impl.hxx
|
|---|
| 226 | ../include-MC/MCEventHeader.o: /usr/include/cxx/cxxl.hxx
|
|---|
| 227 | ../include-MC/MCEventHeader.o: /usr/include/cxx/cxxl_share.hxx
|
|---|
| 228 | ../include-MC/MCEventHeader.o: /usr/include/cxx/messages.hxx
|
|---|
| 229 | ../include-MC/MCEventHeader.o: /usr/include/stddef.h /usr/include/standards.h
|
|---|
| 230 | ../include-MC/MCEventHeader.o: /usr/include/stdio.h /usr/include/sys/seek.h
|
|---|
| 231 | ../include-MC/MCEventHeader.o: /usr/include/va_list.h
|
|---|
| 232 | ../include-MC/MCEventHeader.o: /usr/include/sys/types.h
|
|---|
| 233 | ../include-MC/MCEventHeader.o: /usr/include/mach/machine/vm_types.h
|
|---|
| 234 | ../include-MC/MCEventHeader.o: /usr/include/sys/select.h
|
|---|
| 235 | ../include-MC/MCEventHeader.o: /usr/include/getopt.h
|
|---|
| 236 | ../include-MC/MCEventHeader.o: /usr/include/sys/limits.h
|
|---|
| 237 | ../include-MC/MCEventHeader.o: /usr/include/sys/machine/machlimits.h
|
|---|
| 238 | ../include-MC/MCEventHeader.o: /usr/include/sys/syslimits.h
|
|---|
| 239 | ../include-MC/MCEventHeader.o: /usr/include/sys/machine/machtime.h
|
|---|
| 240 | ../include-MC/MCEventHeader.o: /usr/include/sys/rt_limits.h
|
|---|
| 241 | ../include-MC/MCEventHeader.o: /usr/include/limits.h /usr/include/memory.h
|
|---|
| 242 | ../include-MC/MCEventHeader.o: /usr/include/string.h /usr/include/strings.h
|
|---|
| 243 | ../include-MC/MCEventHeader.o: /usr/include/cxx/iomanip.h
|
|---|
| 244 | ../include-MC/MCEventHeader.o: /usr/include/cxx/iomanip.hxx
|
|---|
| 245 | ../include-MC/MCEventHeader.o: /usr/include/cxx/iomanip_impl.hxx
|
|---|
| 246 | ../include-MC/MCEventHeader.o: /usr/include/cxx/generic.hxx
|
|---|
| 247 | ../include-MC/MCEventHeader.o: /usr/include/cxx/mutex.hxx
|
|---|
| 248 | ../include-MC/MCEventHeader.o: /usr/include/cxx/fstream.h
|
|---|
| 249 | ../include-MC/MCEventHeader.o: /usr/include/cxx/fstream.hxx
|
|---|
| 250 | ../include-MC/MCEventHeader.o: /usr/include/cxx/fstream_impl.hxx
|
|---|
| 251 | ../include-MC/MCEventHeader.o: /usr/include/stdlib.h /usr/include/math.h
|
|---|
| 252 | ../include-MC/MCEventHeader.o: ../include-CORSIKA/COREventHeader.hxx
|
|---|
| 253 | ../include-MC/MCCphoton.o: ../include-MC/MCCphoton.hxx
|
|---|
| 254 | ../include-MC/MCCphoton.o: ../include-GENERAL/Rtypes.h
|
|---|
| 255 | ../include-MC/MCCphoton.o: /usr/include/cxx/iostream.h
|
|---|
| 256 | ../include-MC/MCCphoton.o: /usr/include/cxx/iostream.hxx
|
|---|
| 257 | ../include-MC/MCCphoton.o: /usr/include/cxx/compnent.hxx
|
|---|
| 258 | ../include-MC/MCCphoton.o: /usr/include/cxx/iostream_impl.hxx
|
|---|
| 259 | ../include-MC/MCCphoton.o: /usr/include/cxx/cxxl.hxx
|
|---|
| 260 | ../include-MC/MCCphoton.o: /usr/include/cxx/cxxl_share.hxx
|
|---|
| 261 | ../include-MC/MCCphoton.o: /usr/include/cxx/messages.hxx
|
|---|
| 262 | ../include-MC/MCCphoton.o: /usr/include/stddef.h /usr/include/standards.h
|
|---|
| 263 | ../include-MC/MCCphoton.o: /usr/include/stdio.h /usr/include/sys/seek.h
|
|---|
| 264 | ../include-MC/MCCphoton.o: /usr/include/va_list.h /usr/include/sys/types.h
|
|---|
| 265 | ../include-MC/MCCphoton.o: /usr/include/mach/machine/vm_types.h
|
|---|
| 266 | ../include-MC/MCCphoton.o: /usr/include/sys/select.h /usr/include/getopt.h
|
|---|
| 267 | ../include-MC/MCCphoton.o: /usr/include/sys/limits.h
|
|---|
| 268 | ../include-MC/MCCphoton.o: /usr/include/sys/machine/machlimits.h
|
|---|
| 269 | ../include-MC/MCCphoton.o: /usr/include/sys/syslimits.h
|
|---|
| 270 | ../include-MC/MCCphoton.o: /usr/include/sys/machine/machtime.h
|
|---|
| 271 | ../include-MC/MCCphoton.o: /usr/include/sys/rt_limits.h /usr/include/limits.h
|
|---|
| 272 | ../include-MC/MCCphoton.o: /usr/include/memory.h /usr/include/string.h
|
|---|
| 273 | ../include-MC/MCCphoton.o: /usr/include/strings.h /usr/include/cxx/iomanip.h
|
|---|
| 274 | ../include-MC/MCCphoton.o: /usr/include/cxx/iomanip.hxx
|
|---|
| 275 | ../include-MC/MCCphoton.o: /usr/include/cxx/iomanip_impl.hxx
|
|---|
| 276 | ../include-MC/MCCphoton.o: /usr/include/cxx/generic.hxx
|
|---|
| 277 | ../include-MC/MCCphoton.o: /usr/include/cxx/mutex.hxx
|
|---|
| 278 | ../include-MC/MCCphoton.o: /usr/include/cxx/fstream.h
|
|---|
| 279 | ../include-MC/MCCphoton.o: /usr/include/cxx/fstream.hxx
|
|---|
| 280 | ../include-MC/MCCphoton.o: /usr/include/cxx/fstream_impl.hxx
|
|---|
| 281 | ../include-MC/MCCphoton.o: /usr/include/stdlib.h /usr/include/math.h
|
|---|
| 282 | ../include-MC/MCCphoton.o: ../include-GENERAL/jcmacros.h
|
|---|
| 283 | ../include-MTrigger/MTrigger.o: ../include-MTrigger/MTrigger.hxx
|
|---|
| 284 | ../include-MTrigger/MTrigger.o: /usr/include/cxx/iostream.h
|
|---|
| 285 | ../include-MTrigger/MTrigger.o: /usr/include/cxx/iostream.hxx
|
|---|
| 286 | ../include-MTrigger/MTrigger.o: /usr/include/cxx/compnent.hxx
|
|---|
| 287 | ../include-MTrigger/MTrigger.o: /usr/include/cxx/iostream_impl.hxx
|
|---|
| 288 | ../include-MTrigger/MTrigger.o: /usr/include/cxx/cxxl.hxx
|
|---|
| 289 | ../include-MTrigger/MTrigger.o: /usr/include/cxx/cxxl_share.hxx
|
|---|
| 290 | ../include-MTrigger/MTrigger.o: /usr/include/cxx/messages.hxx
|
|---|
| 291 | ../include-MTrigger/MTrigger.o: /usr/include/stddef.h
|
|---|
| 292 | ../include-MTrigger/MTrigger.o: /usr/include/standards.h /usr/include/stdio.h
|
|---|
| 293 | ../include-MTrigger/MTrigger.o: /usr/include/sys/seek.h
|
|---|
| 294 | ../include-MTrigger/MTrigger.o: /usr/include/va_list.h
|
|---|
| 295 | ../include-MTrigger/MTrigger.o: /usr/include/sys/types.h
|
|---|
| 296 | ../include-MTrigger/MTrigger.o: /usr/include/mach/machine/vm_types.h
|
|---|
| 297 | ../include-MTrigger/MTrigger.o: /usr/include/sys/select.h
|
|---|
| 298 | ../include-MTrigger/MTrigger.o: /usr/include/getopt.h
|
|---|
| 299 | ../include-MTrigger/MTrigger.o: /usr/include/sys/limits.h
|
|---|
| 300 | ../include-MTrigger/MTrigger.o: /usr/include/sys/machine/machlimits.h
|
|---|
| 301 | ../include-MTrigger/MTrigger.o: /usr/include/sys/syslimits.h
|
|---|
| 302 | ../include-MTrigger/MTrigger.o: /usr/include/sys/machine/machtime.h
|
|---|
| 303 | ../include-MTrigger/MTrigger.o: /usr/include/sys/rt_limits.h
|
|---|
| 304 | ../include-MTrigger/MTrigger.o: /usr/include/limits.h /usr/include/memory.h
|
|---|
| 305 | ../include-MTrigger/MTrigger.o: /usr/include/string.h /usr/include/strings.h
|
|---|
| 306 | ../include-MTrigger/MTrigger.o: /usr/include/math.h /usr/include/stdlib.h
|
|---|
| 307 | ../include-MTrigger/MTrigger.o: /CERN/root/include/TObject.h
|
|---|
| 308 | ../include-MTrigger/MTrigger.o: ../../../include-Classes/Mdefine.h
|
|---|
| 309 | ../../../include-Classes/MRawPixel.o: /usr/include/cxx/iostream.h
|
|---|
| 310 | ../../../include-Classes/MRawPixel.o: /usr/include/cxx/iostream.hxx
|
|---|
| 311 | ../../../include-Classes/MRawPixel.o: /usr/include/cxx/compnent.hxx
|
|---|
| 312 | ../../../include-Classes/MRawPixel.o: /usr/include/cxx/iostream_impl.hxx
|
|---|
| 313 | ../../../include-Classes/MRawPixel.o: /usr/include/cxx/cxxl.hxx
|
|---|
| 314 | ../../../include-Classes/MRawPixel.o: /usr/include/cxx/cxxl_share.hxx
|
|---|
| 315 | ../../../include-Classes/MRawPixel.o: /usr/include/cxx/messages.hxx
|
|---|
| 316 | ../../../include-Classes/MRawPixel.o: /usr/include/stddef.h
|
|---|
| 317 | ../../../include-Classes/MRawPixel.o: /usr/include/standards.h
|
|---|
| 318 | ../../../include-Classes/MRawPixel.o: /usr/include/stdio.h
|
|---|
| 319 | ../../../include-Classes/MRawPixel.o: /usr/include/sys/seek.h
|
|---|
| 320 | ../../../include-Classes/MRawPixel.o: /usr/include/va_list.h
|
|---|
| 321 | ../../../include-Classes/MRawPixel.o: /usr/include/sys/types.h
|
|---|
| 322 | ../../../include-Classes/MRawPixel.o: /usr/include/mach/machine/vm_types.h
|
|---|
| 323 | ../../../include-Classes/MRawPixel.o: /usr/include/sys/select.h
|
|---|
| 324 | ../../../include-Classes/MRawPixel.o: /usr/include/getopt.h
|
|---|
| 325 | ../../../include-Classes/MRawPixel.o: /usr/include/sys/limits.h
|
|---|
| 326 | ../../../include-Classes/MRawPixel.o: /usr/include/sys/machine/machlimits.h
|
|---|
| 327 | ../../../include-Classes/MRawPixel.o: /usr/include/sys/syslimits.h
|
|---|
| 328 | ../../../include-Classes/MRawPixel.o: /usr/include/sys/machine/machtime.h
|
|---|
| 329 | ../../../include-Classes/MRawPixel.o: /usr/include/sys/rt_limits.h
|
|---|
| 330 | ../../../include-Classes/MRawPixel.o: /usr/include/limits.h
|
|---|
| 331 | ../../../include-Classes/MRawPixel.o: /usr/include/memory.h
|
|---|
| 332 | ../../../include-Classes/MRawPixel.o: /usr/include/string.h
|
|---|
| 333 | ../../../include-Classes/MRawPixel.o: /usr/include/strings.h
|
|---|
| 334 | ../../../include-Classes/MRawPixel.o: /CERN/root/include/TClonesArray.h
|
|---|
| 335 | ../../../include-Classes/MRawPixel.o: /CERN/root/include/TString.h
|
|---|
| 336 | ../../../include-Classes/MRawPixel.o: /CERN/root/include/TRandom.h
|
|---|
| 337 | ../../../include-Classes/MRawPixel.o: ../../../include-Classes/MRawPixel.h
|
|---|
| 338 | ../../../include-Classes/MRawPixel.o: /CERN/root/include/TObject.h
|
|---|
| 339 | ../../../include-Classes/MRawPixel.o: ../../../include-Classes/Mdefine.h
|
|---|
| 340 | ../../../include-Classes/MRawEvt.o: /usr/include/cxx/iostream.h
|
|---|
| 341 | ../../../include-Classes/MRawEvt.o: /usr/include/cxx/iostream.hxx
|
|---|
| 342 | ../../../include-Classes/MRawEvt.o: /usr/include/cxx/compnent.hxx
|
|---|
| 343 | ../../../include-Classes/MRawEvt.o: /usr/include/cxx/iostream_impl.hxx
|
|---|
| 344 | ../../../include-Classes/MRawEvt.o: /usr/include/cxx/cxxl.hxx
|
|---|
| 345 | ../../../include-Classes/MRawEvt.o: /usr/include/cxx/cxxl_share.hxx
|
|---|
| 346 | ../../../include-Classes/MRawEvt.o: /usr/include/cxx/messages.hxx
|
|---|
| 347 | ../../../include-Classes/MRawEvt.o: /usr/include/stddef.h
|
|---|
| 348 | ../../../include-Classes/MRawEvt.o: /usr/include/standards.h
|
|---|
| 349 | ../../../include-Classes/MRawEvt.o: /usr/include/stdio.h
|
|---|
| 350 | ../../../include-Classes/MRawEvt.o: /usr/include/sys/seek.h
|
|---|
| 351 | ../../../include-Classes/MRawEvt.o: /usr/include/va_list.h
|
|---|
| 352 | ../../../include-Classes/MRawEvt.o: /usr/include/sys/types.h
|
|---|
| 353 | ../../../include-Classes/MRawEvt.o: /usr/include/mach/machine/vm_types.h
|
|---|
| 354 | ../../../include-Classes/MRawEvt.o: /usr/include/sys/select.h
|
|---|
| 355 | ../../../include-Classes/MRawEvt.o: /usr/include/getopt.h
|
|---|
| 356 | ../../../include-Classes/MRawEvt.o: /usr/include/sys/limits.h
|
|---|
| 357 | ../../../include-Classes/MRawEvt.o: /usr/include/sys/machine/machlimits.h
|
|---|
| 358 | ../../../include-Classes/MRawEvt.o: /usr/include/sys/syslimits.h
|
|---|
| 359 | ../../../include-Classes/MRawEvt.o: /usr/include/sys/machine/machtime.h
|
|---|
| 360 | ../../../include-Classes/MRawEvt.o: /usr/include/sys/rt_limits.h
|
|---|
| 361 | ../../../include-Classes/MRawEvt.o: /usr/include/limits.h
|
|---|
| 362 | ../../../include-Classes/MRawEvt.o: /usr/include/memory.h
|
|---|
| 363 | ../../../include-Classes/MRawEvt.o: /usr/include/string.h
|
|---|
| 364 | ../../../include-Classes/MRawEvt.o: /usr/include/strings.h
|
|---|
| 365 | ../../../include-Classes/MRawEvt.o: /CERN/root/include/TClonesArray.h
|
|---|
| 366 | ../../../include-Classes/MRawEvt.o: /CERN/root/include/TString.h
|
|---|
| 367 | ../../../include-Classes/MRawEvt.o: /CERN/root/include/TRandom.h
|
|---|
| 368 | ../../../include-Classes/MRawEvt.o: ../../../include-Classes/MRawEvt.h
|
|---|
| 369 | ../../../include-Classes/MRawEvt.o: /CERN/root/include/TObject.h
|
|---|
| 370 | ../../../include-Classes/MRawEvt.o: ../../../include-Classes/Mdefine.h
|
|---|
| 371 | ../../../include-Classes/MRawEvt.o: ../../../include-Classes/MRawPixel.h
|
|---|
| 372 | ../../../include-Classes/MMcEvt.o: /usr/include/cxx/iostream.h
|
|---|
| 373 | ../../../include-Classes/MMcEvt.o: /usr/include/cxx/iostream.hxx
|
|---|
| 374 | ../../../include-Classes/MMcEvt.o: /usr/include/cxx/compnent.hxx
|
|---|
| 375 | ../../../include-Classes/MMcEvt.o: /usr/include/cxx/iostream_impl.hxx
|
|---|
| 376 | ../../../include-Classes/MMcEvt.o: /usr/include/cxx/cxxl.hxx
|
|---|
| 377 | ../../../include-Classes/MMcEvt.o: /usr/include/cxx/cxxl_share.hxx
|
|---|
| 378 | ../../../include-Classes/MMcEvt.o: /usr/include/cxx/messages.hxx
|
|---|
| 379 | ../../../include-Classes/MMcEvt.o: /usr/include/stddef.h
|
|---|
| 380 | ../../../include-Classes/MMcEvt.o: /usr/include/standards.h
|
|---|
| 381 | ../../../include-Classes/MMcEvt.o: /usr/include/stdio.h
|
|---|
| 382 | ../../../include-Classes/MMcEvt.o: /usr/include/sys/seek.h
|
|---|
| 383 | ../../../include-Classes/MMcEvt.o: /usr/include/va_list.h
|
|---|
| 384 | ../../../include-Classes/MMcEvt.o: /usr/include/sys/types.h
|
|---|
| 385 | ../../../include-Classes/MMcEvt.o: /usr/include/mach/machine/vm_types.h
|
|---|
| 386 | ../../../include-Classes/MMcEvt.o: /usr/include/sys/select.h
|
|---|
| 387 | ../../../include-Classes/MMcEvt.o: /usr/include/getopt.h
|
|---|
| 388 | ../../../include-Classes/MMcEvt.o: /usr/include/sys/limits.h
|
|---|
| 389 | ../../../include-Classes/MMcEvt.o: /usr/include/sys/machine/machlimits.h
|
|---|
| 390 | ../../../include-Classes/MMcEvt.o: /usr/include/sys/syslimits.h
|
|---|
| 391 | ../../../include-Classes/MMcEvt.o: /usr/include/sys/machine/machtime.h
|
|---|
| 392 | ../../../include-Classes/MMcEvt.o: /usr/include/sys/rt_limits.h
|
|---|
| 393 | ../../../include-Classes/MMcEvt.o: /usr/include/limits.h
|
|---|
| 394 | ../../../include-Classes/MMcEvt.o: /usr/include/memory.h
|
|---|
| 395 | ../../../include-Classes/MMcEvt.o: /usr/include/string.h
|
|---|
| 396 | ../../../include-Classes/MMcEvt.o: /usr/include/strings.h
|
|---|
| 397 | ../../../include-Classes/MMcEvt.o: ../../../include-Classes/MMcEvt.h
|
|---|
| 398 | ../../../include-Classes/MMcEvt.o: /usr/include/stdlib.h
|
|---|
| 399 | ../../../include-Classes/MMcEvt.o: /usr/include/unistd.h
|
|---|
| 400 | ../../../include-Classes/MMcEvt.o: /usr/include/sys/access.h
|
|---|
| 401 | ../../../include-Classes/MMcEvt.o: /usr/include/fcntl.h
|
|---|
| 402 | ../../../include-Classes/MMcEvt.o: /usr/include/sys/fcntl.h
|
|---|
| 403 | ../../../include-Classes/MMcEvt.o: /usr/include/sys/mode.h
|
|---|
| 404 | ../../../include-Classes/MMcEvt.o: /CERN/root/include/TObject.h
|
|---|
| 405 | MDiag.o: MDiag.h /usr/include/stdlib.h /usr/include/standards.h
|
|---|
| 406 | MDiag.o: /usr/include/getopt.h /usr/include/sys/types.h
|
|---|
| 407 | MDiag.o: /usr/include/mach/machine/vm_types.h /usr/include/sys/select.h
|
|---|
| 408 | MDiag.o: /usr/include/cxx/iostream.h /usr/include/cxx/iostream.hxx
|
|---|
| 409 | MDiag.o: /usr/include/cxx/compnent.hxx /usr/include/cxx/iostream_impl.hxx
|
|---|
| 410 | MDiag.o: /usr/include/cxx/cxxl.hxx /usr/include/cxx/cxxl_share.hxx
|
|---|
| 411 | MDiag.o: /usr/include/cxx/messages.hxx /usr/include/stddef.h
|
|---|
| 412 | MDiag.o: /usr/include/stdio.h /usr/include/sys/seek.h /usr/include/va_list.h
|
|---|
| 413 | MDiag.o: /usr/include/sys/limits.h /usr/include/sys/machine/machlimits.h
|
|---|
| 414 | MDiag.o: /usr/include/sys/syslimits.h /usr/include/sys/machine/machtime.h
|
|---|
| 415 | MDiag.o: /usr/include/sys/rt_limits.h /usr/include/limits.h
|
|---|
| 416 | MDiag.o: /usr/include/memory.h /usr/include/string.h /usr/include/strings.h
|
|---|
| 417 | MDiag.o: /usr/include/cxx/fstream.h /usr/include/cxx/fstream.hxx
|
|---|
| 418 | MDiag.o: /usr/include/cxx/fstream_impl.hxx /CERN/root/include/TROOT.h
|
|---|
| 419 | MDiag.o: /CERN/root/include/TFile.h /CERN/root/include/TRandom.h
|
|---|
| 420 | MDiag.o: /CERN/root/include/TTree.h
|
|---|
| 421 | moments.o: moments.h /usr/include/cxx/iostream.h
|
|---|
| 422 | moments.o: /usr/include/cxx/iostream.hxx /usr/include/cxx/compnent.hxx
|
|---|
| 423 | moments.o: /usr/include/cxx/iostream_impl.hxx /usr/include/cxx/cxxl.hxx
|
|---|
| 424 | moments.o: /usr/include/cxx/cxxl_share.hxx /usr/include/cxx/messages.hxx
|
|---|
| 425 | moments.o: /usr/include/stddef.h /usr/include/standards.h
|
|---|
| 426 | moments.o: /usr/include/stdio.h /usr/include/sys/seek.h
|
|---|
| 427 | moments.o: /usr/include/va_list.h /usr/include/sys/types.h
|
|---|
| 428 | moments.o: /usr/include/mach/machine/vm_types.h /usr/include/sys/select.h
|
|---|
| 429 | moments.o: /usr/include/getopt.h /usr/include/sys/limits.h
|
|---|
| 430 | moments.o: /usr/include/sys/machine/machlimits.h /usr/include/sys/syslimits.h
|
|---|
| 431 | moments.o: /usr/include/sys/machine/machtime.h /usr/include/sys/rt_limits.h
|
|---|
| 432 | moments.o: /usr/include/limits.h /usr/include/memory.h /usr/include/string.h
|
|---|
| 433 | moments.o: /usr/include/strings.h /usr/include/cxx/fstream.h
|
|---|
| 434 | moments.o: /usr/include/cxx/fstream.hxx /usr/include/cxx/fstream_impl.hxx
|
|---|
| 435 | moments.o: /usr/include/stdlib.h /usr/include/math.h /usr/include/float.h
|
|---|
| 436 | moments.o: /usr/include/fp_class.h ../include-GENERAL/jcmacros.h
|
|---|
| 437 | moments.o: ../include-GENERAL/jcdebug.h camera-v.h
|
|---|
| 438 | creadparam.o: creadparam.h /usr/include/cxx/iostream.h
|
|---|
| 439 | creadparam.o: /usr/include/cxx/iostream.hxx /usr/include/cxx/compnent.hxx
|
|---|
| 440 | creadparam.o: /usr/include/cxx/iostream_impl.hxx /usr/include/cxx/cxxl.hxx
|
|---|
| 441 | creadparam.o: /usr/include/cxx/cxxl_share.hxx /usr/include/cxx/messages.hxx
|
|---|
| 442 | creadparam.o: /usr/include/stddef.h /usr/include/standards.h
|
|---|
| 443 | creadparam.o: /usr/include/stdio.h /usr/include/sys/seek.h
|
|---|
| 444 | creadparam.o: /usr/include/va_list.h /usr/include/sys/types.h
|
|---|
| 445 | creadparam.o: /usr/include/mach/machine/vm_types.h /usr/include/sys/select.h
|
|---|
| 446 | creadparam.o: /usr/include/getopt.h /usr/include/sys/limits.h
|
|---|
| 447 | creadparam.o: /usr/include/sys/machine/machlimits.h
|
|---|
| 448 | creadparam.o: /usr/include/sys/syslimits.h
|
|---|
| 449 | creadparam.o: /usr/include/sys/machine/machtime.h
|
|---|
| 450 | creadparam.o: /usr/include/sys/rt_limits.h /usr/include/limits.h
|
|---|
| 451 | creadparam.o: /usr/include/memory.h /usr/include/string.h
|
|---|
| 452 | creadparam.o: /usr/include/strings.h /usr/include/cxx/fstream.h
|
|---|
| 453 | creadparam.o: /usr/include/cxx/fstream.hxx /usr/include/cxx/fstream_impl.hxx
|
|---|
| 454 | creadparam.o: /usr/include/stdlib.h /usr/include/math.h /usr/include/float.h
|
|---|
| 455 | creadparam.o: /usr/include/fp_class.h ../include-GENERAL/jcmacros.h
|
|---|
| 456 | creadparam.o: ../include-GENERAL/jcdebug.h camera-v.h
|
|---|
| 457 | camera.o: /CERN/root/include/TROOT.h /CERN/root/include/TFile.h
|
|---|
| 458 | camera.o: /CERN/root/include/TTree.h /CERN/root/include/TBranch.h MDiag.h
|
|---|
| 459 | camera.o: /usr/include/stdlib.h /usr/include/standards.h
|
|---|
| 460 | camera.o: /usr/include/getopt.h /usr/include/sys/types.h
|
|---|
| 461 | camera.o: /usr/include/mach/machine/vm_types.h /usr/include/sys/select.h
|
|---|
| 462 | camera.o: /usr/include/cxx/iostream.h /usr/include/cxx/iostream.hxx
|
|---|
| 463 | camera.o: /usr/include/cxx/compnent.hxx /usr/include/cxx/iostream_impl.hxx
|
|---|
| 464 | camera.o: /usr/include/cxx/cxxl.hxx /usr/include/cxx/cxxl_share.hxx
|
|---|
| 465 | camera.o: /usr/include/cxx/messages.hxx /usr/include/stddef.h
|
|---|
| 466 | camera.o: /usr/include/stdio.h /usr/include/sys/seek.h /usr/include/va_list.h
|
|---|
| 467 | camera.o: /usr/include/sys/limits.h /usr/include/sys/machine/machlimits.h
|
|---|
| 468 | camera.o: /usr/include/sys/syslimits.h /usr/include/sys/machine/machtime.h
|
|---|
| 469 | camera.o: /usr/include/sys/rt_limits.h /usr/include/limits.h
|
|---|
| 470 | camera.o: /usr/include/memory.h /usr/include/string.h /usr/include/strings.h
|
|---|
| 471 | camera.o: /usr/include/cxx/fstream.h /usr/include/cxx/fstream.hxx
|
|---|
| 472 | camera.o: /usr/include/cxx/fstream_impl.hxx /CERN/root/include/TRandom.h
|
|---|
| 473 | camera.o: ../include-MTrigger/MTrigger.hxx /usr/include/math.h
|
|---|
| 474 | camera.o: /CERN/root/include/TObject.h ../../../include-Classes/Mdefine.h
|
|---|
| 475 | camera.o: ../../../include-Classes/MRawEvt.h
|
|---|
| 476 | camera.o: /CERN/root/include/TClonesArray.h ../../../include-Classes/MMcEvt.h
|
|---|
| 477 | camera.o: /usr/include/unistd.h /usr/include/sys/access.h
|
|---|
| 478 | camera.o: /usr/include/fcntl.h /usr/include/sys/fcntl.h
|
|---|
| 479 | camera.o: /usr/include/sys/mode.h camera.h /usr/include/stdarg.h
|
|---|
| 480 | camera.o: /usr/include/dirent.h /usr/include/libgen.h camera-v.h
|
|---|
| 481 | camera.o: ../include-GENERAL/jcmacros.h ../include-GENERAL/jcdebug.h
|
|---|
| 482 | camera.o: creadparam.h /usr/include/float.h /usr/include/fp_class.h
|
|---|
| 483 | camera.o: ../Reflector/atm.h ../Reflector/reflector-v.h moments.h
|
|---|
| 484 | camera.o: ../include-GENERAL/lagrange.h ../include-MC/MCEventHeader.hxx
|
|---|
| 485 | camera.o: ../include-GENERAL/Rtypes.h /usr/include/cxx/iomanip.h
|
|---|
| 486 | camera.o: /usr/include/cxx/iomanip.hxx /usr/include/cxx/iomanip_impl.hxx
|
|---|
| 487 | camera.o: /usr/include/cxx/generic.hxx /usr/include/cxx/mutex.hxx
|
|---|
| 488 | camera.o: ../include-CORSIKA/COREventHeader.hxx ../include-MC/MCCphoton.hxx
|
|---|
| 489 | camera.o: ../include-GENERAL/ranlib.h
|
|---|