C++InterfacetoTauola
src/tauolaCInterfaces/Makefile
1 include ../make.inc
2 
3 SOURCES_CC=TauolaParticle.cxx TauolaParticlePair.cxx \ TauolaEvent.cxx Tauola.cxx \ DecayList.cxx
4 OBJECTS_CC=$(SOURCES_CC:.cxx=.o)
5 
6 %.o: %.cxx
7  $(CC) $(CFLAGS) $(DEBUG) -I. -I../utilities -I../tauolaFortranInterfaces -I../eventRecordInterfaces -c $< -o $@
8 
9 all: $(OBJECTS_CC)
10 
11 clean:
12  rm -f *.o; rm -f *~;
13 
Contains two TauolaParticle that are related by the same mother. Spin correlations are handled here...
Abstract base class for particle in the event. This class also handles boosting.
Controls the configuration, initialization of Tauola.