Back to home page

sPhenix code displayed by LXR

 
 

    


File indexing completed on 2025-12-17 09:19:46

0001 AUTOMAKE_OPTIONS = foreign subdir-objects
0002 
0003 AM_CPPFLAGS = \
0004   -I$(includedir) \
0005   -isystem$(OFFLINE_MAIN)/include \
0006   -isystem$(ROOTSYS)/include \
0007   -isystem$(OPT_SPHENIX)/include
0008 
0009 AM_LDFLAGS = \
0010   -L$(libdir) \
0011   -L$(OFFLINE_MAIN)/lib
0012 
0013 pkginclude_HEADERS = \
0014   Fun4AllEventOutStream.h \
0015   Fun4AllEventOutputManager.h \
0016   Fun4AllFileOutStream.h \
0017   Fun4AllPrdfInputManager.h \
0018   Fun4AllPrdfOutputManager.h \
0019   Fun4AllRolloverFileOutStream.h \
0020   Fun4AllStreamingInputManager.h \
0021   Fun4AllTriggeredInputManager.h \
0022   intt_pool.h \
0023   InputManagerType.h \
0024   MicromegasBcoMatchingInformation.h\
0025   MicromegasBcoMatchingInformation_v1.h\
0026   MicromegasBcoMatchingInformation_v2.h\
0027   MvtxRawDefs.h \
0028   SingleGl1PoolInput.h \
0029   SingleGl1TriggeredInput.h \
0030   SingleMicromegasPoolInput.h \
0031   SingleMicromegasPoolInput_v1.h \
0032   SingleMicromegasPoolInput_v2.h \
0033   SingleInttEventInput.h \
0034   SingleInttPoolInput.h \
0035   SingleMvtxPoolInput.h \
0036   SingleStreamingInput.h \
0037   SingleTpcPoolInput.h \
0038   SingleTriggeredInput.h \
0039   SingleTpcTimeFrameInput.h \
0040   TpcTimeFrameBuilder.h
0041 
0042 decoderincludedir = $(includedir)/mvtx_decoder
0043 decoderinclude_HEADERS = \
0044   mvtx_decoder/RDH.h \
0045   mvtx_decoder/DecodingStat.h \
0046   mvtx_decoder/GBTLink.h \
0047   mvtx_decoder/GBTWord.h \
0048   mvtx_decoder/InteractionRecord.h \
0049   mvtx_decoder/mvtx_utils.h \
0050   mvtx_decoder/PayLoadCont.h \
0051   mvtx_decoder/PayLoadSG.h \
0052   mvtx_decoder/PixelData.h \
0053   mvtx_decoder/StrobeData.h
0054 
0055 lib_LTLIBRARIES = \
0056   libmvtx_decoder.la \
0057   libfun4allraw.la
0058 
0059 # source for mvtx decoder library
0060 libmvtx_decoder_la_SOURCES =\
0061   mvtx_decoder/RDH.cc \
0062   mvtx_decoder/DecodingStat.cc \
0063   mvtx_decoder/GBTLink.cc \
0064   mvtx_decoder/GBTWord.cc \
0065   mvtx_decoder/InteractionRecord.cc \
0066   mvtx_decoder/PayLoadCont.cc \
0067   mvtx_decoder/PixelData.cc \
0068   mvtx_decoder/StrobeData.cc
0069 
0070 libfun4allraw_la_SOURCES = \
0071   Fun4AllEventOutStream.cc \
0072   Fun4AllEventOutputManager.cc \
0073   Fun4AllFileOutStream.cc \
0074   Fun4AllPrdfInputManager.cc \
0075   Fun4AllPrdfOutputManager.cc \
0076   Fun4AllRolloverFileOutStream.cc \
0077   Fun4AllStreamingInputManager.cc \
0078   Fun4AllTriggeredInputManager.cc \
0079   intt_pool.cc \
0080   MicromegasBcoMatchingInformation_v1.cc\
0081   MicromegasBcoMatchingInformation_v2.cc\
0082   mvtx_pool.cc \
0083   MvtxRawDefs.cc \
0084   SingleGl1PoolInput.cc \
0085   SingleGl1TriggeredInput.cc \
0086   SingleInttEventInput.cc \
0087   SingleInttPoolInput.cc \
0088   SingleMicromegasPoolInput_v1.cc \
0089   SingleMicromegasPoolInput_v2.cc \
0090   SingleMvtxPoolInput.cc \
0091   SingleStreamingInput.cc \
0092   SingleTpcPoolInput.cc \
0093   SingleTriggeredInput.cc \
0094   SingleTpcTimeFrameInput.cc \
0095   TpcTimeFrameBuilder.cc
0096 
0097 libfun4allraw_la_LIBADD = \
0098   libmvtx_decoder.la \
0099   -lffarawobjects \
0100   -lfun4all \
0101   -lEvent \
0102   -lphoolraw \
0103   -lqautils
0104 
0105 BUILT_SOURCES = testexternals.cc
0106 
0107 noinst_PROGRAMS = \
0108   testexternals_mvtx_decoder \
0109   testexternals
0110 
0111 testexternals_mvtx_decoder_SOURCES = testexternals.cc
0112 testexternals_mvtx_decoder_LDADD = libmvtx_decoder.la
0113 
0114 testexternals_SOURCES = testexternals.cc
0115 testexternals_LDADD   = libfun4allraw.la
0116 
0117 testexternals.cc:
0118         echo "//*** this is a generated file. Do not commit, do not edit" > $@
0119         echo "int main()" >> $@
0120         echo "{" >> $@
0121         echo "  return 0;" >> $@
0122         echo "}" >> $@
0123 
0124 clean-local:
0125         rm -f $(BUILT_SOURCES)