File indexing completed on 2025-08-05 08:11:22
0001 CFLAGS = -g3 -pthread -m64 -Wno-deprecated -I src/
0002 CFLAGS += $(shell root-config --cflags --libs)
0003 CFLAGS += -lEG
0004
0005 all : TrackletAna plotTrkrHit plotTracklets plotRecoVtx plotCluster BeamspotReco INTTVtxZ Corrections GeoAccepCorr
0006
0007 TrackletAna : src/TrackletAna.cxx src/Hit.h src/Tracklet.h
0008 g++ ${CFLAGS} src/TrackletAna.cxx src/Hit.h src/Tracklet.h -o TrackletAna
0009
0010 plotTrkrHit : src/plotTrkrHit.cxx
0011 g++ $(CFLAGS) src/plotTrkrHit.cxx -o plotTrkrHit
0012
0013 plotCluster : src/plotCluster.cxx
0014 g++ $(CFLAGS) src/plotCluster.cxx src/Hit.h src/Tracklet.h src/GenHadron.h -o plotCluster
0015
0016 plotRecoVtx : src/plotRecoVtx.cxx
0017 g++ $(CFLAGS) src/plotRecoVtx.cxx -o plotRecoVtx
0018
0019 plotTracklets : src/plotTracklets.cxx
0020 g++ $(CFLAGS) src/plotTracklets.cxx src/Hit.h src/Tracklet.h src/GenHadron.h -o plotTracklets
0021
0022 INTTVtxZ : src/INTTVtxZ.cxx
0023 g++ $(CFLAGS) src/INTTVtxZ.cxx -o INTTVtxZ
0024
0025 BeamspotReco : src/BeamspotReco.cxx
0026 g++ $(CFLAGS) src/BeamspotReco.cxx -I$(OFFLINE_MAIN)/include -o BeamspotReco
0027
0028 Corrections : src/Corrections.cxx
0029 g++ $(CFLAGS) src/Corrections.cxx -o Corrections
0030
0031 GeoAccepCorr : src/GeoAccepCorr.cxx
0032 g++ $(CFLAGS) src/GeoAccepCorr.cxx -o GeoAccepCorr
0033
0034 clean :
0035 rm TrackletAna plotTrkrHit plotTracklets plotRecoVtx plotCluster BeamspotReco INTTVtxZ Corrections GeoAccepCorr