File indexing completed on 2025-08-06 08:17:57
0001 AUTOMAKE_OPTIONS = foreign
0002
0003 lib_LTLIBRARIES = libphnodedump.la
0004
0005 AM_CPPFLAGS = \
0006 -I$(includedir) \
0007 -isystem$(OFFLINE_MAIN)/include \
0008 -isystem$(ROOTSYS)/include
0009
0010 pkginclude_HEADERS = \
0011 Dumper.h \
0012 DumpObject.h \
0013 PHNodeDump.h
0014
0015 libphnodedump_la_SOURCES = \
0016 Dumper.cc \
0017 DumpBbcPmtInfoContainer.cc \
0018 DumpBbcVertexMap.cc \
0019 DumpCaloPacket.cc \
0020 DumpCaloPacketContainer.cc \
0021 DumpCaloTriggerInfo.cc \
0022 DumpCdbUrlSave.cc \
0023 DumpCentralityInfo.cc \
0024 DumpJetContainer.cc \
0025 DumpEpdGeom.cc \
0026 DumpEventHeader.cc \
0027 DumpFlagSave.cc \
0028 DumpGl1Packet.cc \
0029 DumpGl1RawHit.cc \
0030 DumpGlobalVertexMap.cc \
0031 DumpInttDeadMap.cc \
0032 DumpInttRawHitContainer.cc \
0033 DumpJetMap.cc \
0034 DumpMbdGeom.cc \
0035 DumpMbdOut.cc \
0036 DumpMbdPmtContainer.cc \
0037 DumpMbdVertexMap.cc \
0038 DumpMicromegasRawHitContainer.cc \
0039 DumpMvtxRawEvtHeader.cc \
0040 DumpMvtxRawHitContainer.cc \
0041 DumpObject.cc \
0042 DumpParticleFlowElementContainer.cc \
0043 DumpPdbParameterMap.cc \
0044 DumpPdbParameterMapContainer.cc \
0045 DumpPHFieldConfig.cc \
0046 DumpPHG4BlockGeomContainer.cc \
0047 DumpPHG4BlockCellGeomContainer.cc \
0048 DumpPHG4CellContainer.cc \
0049 DumpPHG4CylinderCellContainer.cc \
0050 DumpPHG4CylinderCellGeomContainer.cc \
0051 DumpPHG4CylinderGeomContainer.cc \
0052 DumpPHG4HitContainer.cc \
0053 DumpPHG4ParticleSvtxMap.cc \
0054 DumpPHG4ScintillatorSlatContainer.cc \
0055 DumpPHG4TpcCylinderGeomContainer.cc \
0056 DumpPHG4TruthInfoContainer.cc \
0057 DumpPHG4InEvent.cc \
0058 DumpPHGenIntegral.cc \
0059 DumpPHHepMCGenEventMap.cc \
0060 DumpRawClusterContainer.cc \
0061 DumpRawTowerContainer.cc \
0062 DumpRawTowerGeomContainer.cc \
0063 DumpRunHeader.cc \
0064 DumpSvtxPHG4ParticleMap.cc \
0065 DumpSvtxTrackMap.cc \
0066 DumpSvtxVertexMap.cc \
0067 DumpSyncObject.cc \
0068 DumpTowerBackground.cc \
0069 DumpTowerInfoContainer.cc \
0070 DumpTpcRawHitContainer.cc \
0071 DumpTpcSeedTrackMap.cc \
0072 DumpTrackSeedContainer.cc \
0073 DumpTrkrClusterContainer.cc \
0074 DumpTrkrClusterHitAssoc.cc \
0075 DumpTrkrHitSetContainer.cc \
0076 DumpTrkrClusterCrossingAssoc.cc \
0077 DumpTrkrHitTruthAssoc.cc \
0078 DumpZdcinfo.cc \
0079 PHNodeDump.cc
0080
0081 AM_LDFLAGS = \
0082 -L$(libdir) \
0083 -L$(OFFLINE_MAIN)/lib
0084
0085 libphnodedump_la_LIBADD = \
0086 -lcalo_io \
0087 -lcalotrigger_io \
0088 -lepd_io \
0089 -leventplaneinfo_io \
0090 -lffaobjects \
0091 -lffarawobjects \
0092 -lg4detectors_io \
0093 -lg4mbd_io \
0094 -lHepMC \
0095 -ljetbase_io \
0096 -lmbd_io \
0097 -lparticleflow_io \
0098 -lphfield_io \
0099 -lphg4hit \
0100 -lphhepmc_io \
0101 -lSubsysReco \
0102 -ltrackbase_historic \
0103 -ltrack_io \
0104 -lzdcinfo_io
0105
0106
0107 noinst_PROGRAMS = \
0108 testexternals
0109
0110 BUILT_SOURCES = testexternals.cc
0111
0112 testexternals_SOURCES = testexternals.cc
0113
0114 testexternals_LDADD = \
0115 libphnodedump.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)