forked from Stephan/irena-arm
git-svn-id: svn+ssh://asterix.ieap.uni-kiel.de/home/subversion/stephan/solo/eda/arm@7400 bc5caf13-1734-44f8-af43-603852e9ee25
22 lines
435 B
Makefile
22 lines
435 B
Makefile
|
|
PARSER=irenafile
|
|
include ../irena/libirena.make
|
|
|
|
%.EA: %.dat irenafile
|
|
./irenafile < $< > $@
|
|
|
|
mV=14000
|
|
resV=0.8178
|
|
|
|
%.hist: %.EA
|
|
./adamhist.awk mV=$(mV) resV=$(resV) $< > $@
|
|
|
|
%.ghist: %.EA
|
|
./adamhist.awk mV=$(mV) resV=$(resV) mult_max=1 mult_thr=40. $< > $@
|
|
|
|
%.chist: %.EA
|
|
./adamhist.awk mV=$(mV) resV=$(resV) mult_min=2 mult_thr=60. $< > $@
|
|
|
|
%.ihist: %.EA
|
|
./adamhist.awk mV=$(mV) resV=$(resV) mult_min=2 mult_thr=1000 $< > $@
|
|
|