Skip to content
Snippets Groups Projects
Commit efd89cef authored by Lorenzo Moneta's avatar Lorenzo Moneta
Browse files

fix a wrong commit in xml file and fix dependency on dict library in Makefile

git-svn-id: http://root.cern.ch/svn/root/trunk@21071 27541ba8-7e3a-0410-8455-c3a389f83636
parent c29eb701
No related branches found
No related tags found
No related merge requests found
......@@ -33,7 +33,7 @@ endif
# use reflex
#useReflex=yes
ifneq ($(useReflex),)
ifneq ($(USE_REFLEX),)
GCCXML=yes
CXXFLAGS += -DUSE_REFLEX
ifeq ($(PLATFORM),win32)
......@@ -139,7 +139,7 @@ $(GENVECTOR): $(GENVECTOROBJ)
$(LD) $(LDFLAGS) $^ $(LIBS) $(EXTRALIBS) $(OutPutOpt)$@
@echo "$@ done"
$(VECTORIO): $(VECTORIOOBJ)
$(VECTORIO): $(VECTORIOOBJ) libTrackDict.$(DllSuf)
$(LD) $(LDFLAGS) $^ $(LIBS) $(EXTRALIBS) $(EXTRAIOLIBS) $(OutPutOpt)$@
@echo "$@ done"
......@@ -169,7 +169,7 @@ $(VECTOROP): $(VECTOROPOBJ)
# @echo "$@ done"
ifneq ($(useReflex),)
ifneq ($(USE_REFLEX),)
TrackDict.$(SrcSuf): Track.h TrackDict.xml
@echo "Generating dictionary $@ using gccxml ..."
genreflex Track.h --selection_file=TrackDict.xml -o TrackDict.cxx -I$(ROOTSYS)/include
......
<lcgdict>
<class name="ROOT::Math::PtEtaPhiM4D<Double32_t>"
<field name="fPt" iotype="Double32_t" />
<field name="fEta" iotype="Double32_t" />
<field name="fPhi" iotype="Double32_t" />
<field name="fM" iotype="Double32_t" />
</class>
<class pattern="ROOT::Math::LorentzVector<ROOT::Math::PtEtaPhiM4D*>" />
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment