File indexing completed on 2025-12-16 09:20:17
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 DumpCaloPacket.cc \
0018 DumpCaloPacketContainer.cc \
0019 DumpCaloTriggerInfo.cc \
0020 DumpCdbUrlSave.cc \
0021 DumpCentralityInfo.cc \
0022 DumpJetContainer.cc \
0023 DumpEpdGeom.cc \
0024 DumpEventHeader.cc \
0025 DumpFlagSave.cc \
0026 DumpGl1Packet.cc \
0027 DumpGl1RawHit.cc \
0028 DumpGlobalVertexMap.cc \
0029 DumpInttDeadMap.cc \
0030 DumpInttRawHitContainer.cc \
0031 DumpJetMap.cc \
0032 DumpMbdGeom.cc \
0033 DumpMbdOut.cc \
0034 DumpMbdPmtContainer.cc \
0035 DumpMbdVertexMap.cc \
0036 DumpMicromegasRawHitContainer.cc \
0037 DumpMvtxRawEvtHeader.cc \
0038 DumpMvtxRawHitContainer.cc \
0039 DumpObject.cc \
0040 DumpParticleFlowElementContainer.cc \
0041 DumpPdbParameterMap.cc \
0042 DumpPdbParameterMapContainer.cc \
0043 DumpPHFieldConfig.cc \
0044 DumpPHG4BlockGeomContainer.cc \
0045 DumpPHG4BlockCellGeomContainer.cc \
0046 DumpPHG4CellContainer.cc \
0047 DumpPHG4CylinderCellContainer.cc \
0048 DumpPHG4CylinderCellGeomContainer.cc \
0049 DumpPHG4CylinderGeomContainer.cc \
0050 DumpPHG4HitContainer.cc \
0051 DumpPHG4ParticleSvtxMap.cc \
0052 DumpPHG4ScintillatorSlatContainer.cc \
0053 DumpPHG4TpcCylinderGeomContainer.cc \
0054 DumpPHG4TruthInfoContainer.cc \
0055 DumpPHG4InEvent.cc \
0056 DumpPHGenIntegral.cc \
0057 DumpPHHepMCGenEventMap.cc \
0058 DumpRawClusterContainer.cc \
0059 DumpRawTowerContainer.cc \
0060 DumpRawTowerGeomContainer.cc \
0061 DumpRunHeader.cc \
0062 DumpSvtxPHG4ParticleMap.cc \
0063 DumpSvtxTrackMap.cc \
0064 DumpSvtxVertexMap.cc \
0065 DumpSyncObject.cc \
0066 DumpTowerBackground.cc \
0067 DumpTowerInfoContainer.cc \
0068 DumpTpcRawHitContainer.cc \
0069 DumpTpcSeedTrackMap.cc \
0070 DumpTrackSeedContainer.cc \
0071 DumpTrkrClusterContainer.cc \
0072 DumpTrkrClusterHitAssoc.cc \
0073 DumpTrkrHitSetContainer.cc \
0074 DumpTrkrClusterCrossingAssoc.cc \
0075 DumpTrkrHitTruthAssoc.cc \
0076 DumpTruthVertexMap.cc \
0077 DumpZdcinfo.cc \
0078 PHNodeDump.cc
0079
0080 AM_LDFLAGS = \
0081 -L$(libdir) \
0082 -L$(OFFLINE_MAIN)/lib
0083
0084 libphnodedump_la_LIBADD = \
0085 -lcalo_io \
0086 -lcalotrigger_io \
0087 -lepd_io \
0088 -leventplaneinfo_io \
0089 -lffaobjects \
0090 -lffarawobjects \
0091 -lg4detectors_io \
0092 -lglobalvertex_io \
0093 -lHepMC \
0094 -ljetbase_io \
0095 -lmbd_io \
0096 -lparticleflow_io \
0097 -lphfield_io \
0098 -lphg4hit \
0099 -lphhepmc_io \
0100 -lSubsysReco \
0101 -ltrackbase_historic \
0102 -ltrack_io \
0103 -lzdcinfo_io
0104
0105
0106 noinst_PROGRAMS = \
0107 testexternals
0108
0109 BUILT_SOURCES = testexternals.cc
0110
0111 testexternals_SOURCES = testexternals.cc
0112
0113 testexternals_LDADD = \
0114 libphnodedump.la
0115
0116 testexternals.cc:
0117 echo "//*** this is a generated file. Do not commit, do not edit" > $@
0118 echo "int main()" >> $@
0119 echo "{" >> $@
0120 echo " return 0;" >> $@
0121 echo "}" >> $@
0122
0123 clean-local:
0124 rm -f $(BUILT_SOURCES)