Skip to content

Commit 8a95588

Browse files
committed
Added the "code" tree.
1 parent e810068 commit 8a95588

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

66 files changed

+9355
-0
lines changed

code/.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
*.o
2+
amc502_pll
3+
amc502_lock
4+
amc502_mux
5+
peek
6+
poke

code/Makefile

Lines changed: 96 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,96 @@
1+
ROOTOPTS = `root-config --cflags`
2+
ROOTLIBS = `root-config --libs`
3+
CPPOPTS = -g
4+
#LIBS = $(ROOTLIBS)
5+
6+
all: poke peek fei4_sr fei4_cal fei4_dig fei4_analog fei4_alive fei4_plot fei4_producer fei4_tdac fei4_trimfit fei4_self fei4_self_gui fei4_hot fmc228_dump fmc228_print amc502_mux amc502_pll amc502_lock amc502_stress amc502_edges fmc164_hist fmc164_plot fmc228_plot
7+
#configure: configure.cc stib.cc stib.hh
8+
# g++ $(ROOTOPTS) -o configure configure.cc stib.cc $(LIBS)
9+
#make10b8b : make10b8b.cc
10+
# g++ -g -o make10b8b make10b8b.cc
11+
#test10b8b : test10b8b.cc
12+
# g++ -g -o test10b8b test10b8b.cc
13+
#
14+
poke : poke.cc stib.hh stib.cc
15+
g++ -g -o poke poke.cc stib.cc
16+
peek : peek.cc stib.hh stib.cc
17+
g++ -g -o peek peek.cc stib.cc
18+
#fei4_config : fei4_config.cc fei4.hh fei4.cc stib.hh stib.cc
19+
# g++ -g -o fei4_config fei4_config.cc fei4.cc stib.cc
20+
#fei4_stream : fei4_stream.cc
21+
# g++ -g $(ROOTOPTS) -o fei4_stream fei4_stream.cc $(ROOTLIBS)
22+
fei4_sr : fei4_sr.cc fei4.hh fei4.cc stib.hh stib.cc
23+
g++ -g -o fei4_sr fei4_sr.cc fei4.cc stib.cc
24+
fei4_cal : fei4_cal.cc fei4.hh fei4.cc stib.hh stib.cc
25+
g++ -g -o fei4_cal fei4_cal.cc fei4.cc stib.cc
26+
fei4_dig : fei4_dig.cc fei4.hh fei4.cc stib.hh stib.cc
27+
g++ -g -o fei4_dig fei4_dig.cc fei4.cc stib.cc
28+
#fei4_dig320 : fei4_dig320.cc fei4.hh fei4.cc stib.hh stib.cc
29+
# g++ -g -o fei4_dig320 fei4_dig320.cc fei4.cc stib.cc
30+
fei4_analog : fei4_analog.cc fei4.hh fei4.cc stib.hh stib.cc
31+
g++ -g $(ROOTOPTS) -o fei4_analog fei4_analog.cc fei4.cc stib.cc $(ROOTLIBS)
32+
#fei4_read_latches : fei4_read_latches.cc fei4.hh fei4.cc stib.hh stib.cc
33+
# g++ -g -o fei4_read_latches fei4_read_latches.cc fei4.cc stib.cc
34+
fei4_alive : fei4_alive.cc fei4.hh fei4.cc stib.hh stib.cc
35+
g++ -g $(ROOTOPTS) -o fei4_alive fei4_alive.cc fei4.cc stib.cc $(ROOTLIBS)
36+
#fei4_alive320 : fei4_alive320.cc fei4.hh fei4.cc stib.hh stib.cc
37+
# g++ -g $(ROOTOPTS) -o fei4_alive320 fei4_alive320.cc fei4.cc stib.cc $(ROOTLIBS)
38+
fei4_plot : fei4_plot.cc fei4.hh fei4.cc stib.hh stib.cc
39+
g++ -g $(ROOTOPTS) -o fei4_plot fei4_plot.cc fei4.cc stib.cc $(ROOTLIBS)
40+
fei4_producer : fei4_producer.cc fei4.hh fei4.cc stib.hh stib.cc
41+
g++ -g $(ROOTOPTS) -o fei4_producer fei4_producer.cc fei4.cc stib.cc -lNew $(ROOTLIBS)
42+
#fei4_reg : fei4_reg.cc fei4.hh fei4.cc stib.hh stib.cc
43+
# g++ -g -o fei4_reg fei4_reg.cc fei4.cc stib.cc
44+
#fei4_latch : fei4_latch.cc fei4.hh fei4.cc stib.hh stib.cc
45+
# g++ -g -o fei4_latch fei4_latch.cc fei4.cc stib.cc
46+
#fei4_scan : fei4_scan.cc fei4.hh fei4.cc stib.hh stib.cc
47+
# g++ -g $(ROOTOPTS) -o fei4_scan fei4_scan.cc fei4.cc stib.cc $(ROOTLIBS)
48+
# fei4_analog : fei4_analog.cc fei4.hh fei4.cc stib.hh stib.cc
49+
# g++ -g $(ROOTOPTS) -o fei4_analog fei4_analog.cc fei4.cc stib.cc $(ROOTLIBS)
50+
fei4_tdac : fei4_tdac.cc fei4.hh fei4.cc stib.hh stib.cc
51+
g++ -g $(ROOTOPTS) -o fei4_tdac fei4_tdac.cc fei4.cc stib.cc $(ROOTLIBS)
52+
#fei4_qdac : fei4_qdac.cc fei4.hh fei4.cc stib.hh stib.cc
53+
# g++ -g $(ROOTOPTS) -o fei4_qdac fei4_qdac.cc fei4.cc stib.cc $(ROOTLIBS)
54+
fei4_trimfit : fei4_trimfit.cc fei4.hh fei4.cc stib.hh stib.cc
55+
g++ -g $(ROOTOPTS) -o fei4_trimfit fei4_trimfit.cc fei4.cc stib.cc $(ROOTLIBS)
56+
#fei4_print : fei4_print.cc fei4.hh fei4.cc stib.hh stib.cc
57+
# g++ -g $(ROOTOPTS) -o fei4_print fei4_print.cc fei4.cc stib.cc $(ROOTLIBS)
58+
#fei4_pdly : fei4_pdly.cc fei4.hh fei4.cc stib.hh stib.cc
59+
# g++ -g $(ROOTOPTS) -o fei4_pdly fei4_pdly.cc fei4.cc stib.cc $(ROOTLIBS)
60+
#test_ethio: test_ethio.cc fei4.hh fei4.cc stib.hh stib.cc
61+
# g++ -g $(ROOTOPTS) -o test_ethio test_ethio.cc fei4.cc stib.cc $(ROOTLIBS)
62+
#fei4_tot : fei4_tot.cc fei4.hh fei4.cc stib.hh stib.cc
63+
# g++ -g $(ROOTOPTS) -o fei4_tot fei4_tot.cc fei4.cc stib.cc $(ROOTLIBS)
64+
#fei4_checktot : fei4_checktot.cc fei4.hh fei4.cc stib.hh stib.cc
65+
# g++ -g $(ROOTOPTS) -o fei4_checktot fei4_checktot.cc fei4.cc stib.cc $(ROOTLIBS)
66+
fei4_self : fei4_self.cc fei4.hh fei4.cc stib.hh stib.cc
67+
g++ -g -o fei4_self fei4_self.cc fei4.cc stib.cc
68+
fei4_self_gui : fei4_self_gui.cc fei4.hh fei4.cc stib.hh stib.cc
69+
g++ -g $(ROOTOPTS) -o fei4_self_gui fei4_self_gui.cc fei4.cc stib.cc $(ROOTLIBS)
70+
fei4_hot : fei4_hot.cc fei4.hh fei4.cc stib.hh stib.cc
71+
g++ -g -o fei4_hot fei4_hot.cc fei4.cc stib.cc
72+
fmc228_dump : fmc228_dump.cc fmc228.hh fmc228.cc stib.hh stib.cc
73+
g++ -g -o fmc228_dump fmc228_dump.cc fmc228.cc stib.cc
74+
fmc228_print : fmc228_print.cc fmc228.hh fmc228.cc stib.hh stib.cc
75+
g++ -g -o fmc228_print fmc228_print.cc fmc228.cc stib.cc
76+
#amc502_clocks : amc502_clocks.cc amc502.hh amc502.cc stib.hh stib.cc
77+
# g++ -g -o amc502_clocks amc502_clocks.cc amc502.cc stib.cc
78+
amc502_mux : amc502_mux.cc amc502.hh amc502.cc stib.hh stib.cc
79+
g++ -g -o amc502_mux amc502_mux.cc amc502.cc stib.cc
80+
amc502_pll : amc502_pll.cc amc502.hh amc502.cc stib.hh stib.cc
81+
g++ -g -o amc502_pll amc502_pll.cc amc502.cc stib.cc
82+
amc502_lock : amc502_lock.cc amc502.hh amc502.cc stib.hh stib.cc
83+
g++ -g -o amc502_lock amc502_lock.cc amc502.cc stib.cc
84+
amc502_stress : amc502_stress.cc amc502.hh amc502.cc stib.hh stib.cc
85+
g++ -g -o amc502_stress amc502_stress.cc amc502.cc stib.cc
86+
amc502_edges : amc502_edges.cc amc502.hh amc502.cc stib.hh stib.cc
87+
g++ -g -o amc502_edges amc502_edges.cc amc502.cc stib.cc
88+
fmc164_hist : fmc164_hist.cc
89+
g++ -g $(ROOTOPTS) -o fmc164_hist fmc164_hist.cc $(ROOTLIBS)
90+
fmc164_plot : fmc164_plot.cc
91+
g++ -g $(ROOTOPTS) -o fmc164_plot fmc164_plot.cc $(ROOTLIBS)
92+
fmc228_plot : fmc228_plot.cc
93+
g++ -g $(ROOTOPTS) -o fmc228_plot fmc228_plot.cc $(ROOTLIBS)
94+
95+
clean :
96+
rm poke peek fei4_sr fei4_cal fei4_dig fei4_analog fei4_alive fei4_plot fei4_producer fei4_tdac fei4_trimfit fei4_self fei4_self_gui fei4_hot fmc228_dump fmc228_print amc502_mux amc502_pll amc502_lock amc502_stress amc502_edges fmc164_hist fmc164_plot fmc228_plot

code/Makefile_old

Lines changed: 92 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,92 @@
1+
ROOTOPTS = `root-config --cflags`
2+
ROOTLIBS = `root-config --libs`
3+
CPPOPTS = -g
4+
#LIBS = $(ROOTLIBS)
5+
6+
configure: configure.cc stib.cc stib.hh
7+
g++ $(ROOTOPTS) -o configure configure.cc stib.cc $(LIBS)
8+
make10b8b : make10b8b.cc
9+
g++ -g -o make10b8b make10b8b.cc
10+
test10b8b : test10b8b.cc
11+
g++ -g -o test10b8b test10b8b.cc
12+
13+
poke : poke.cc stib.hh stib.cc
14+
g++ -g -o poke poke.cc stib.cc
15+
peek : peek.cc stib.hh stib.cc
16+
g++ -g -o peek peek.cc stib.cc
17+
fei4_config : fei4_config.cc fei4.hh fei4.cc stib.hh stib.cc
18+
g++ -g -o fei4_config fei4_config.cc fei4.cc stib.cc
19+
fei4_stream : fei4_stream.cc
20+
g++ -g $(ROOTOPTS) -o fei4_stream fei4_stream.cc $(ROOTLIBS)
21+
fei4_sr : fei4_sr.cc fei4.hh fei4.cc stib.hh stib.cc
22+
g++ -g -o fei4_sr fei4_sr.cc fei4.cc stib.cc
23+
fei4_cal : fei4_cal.cc fei4.hh fei4.cc stib.hh stib.cc
24+
g++ -g -o fei4_cal fei4_cal.cc fei4.cc stib.cc
25+
fei4_dig : fei4_dig.cc fei4.hh fei4.cc stib.hh stib.cc
26+
g++ -g -o fei4_dig fei4_dig.cc fei4.cc stib.cc
27+
fei4_dig320 : fei4_dig320.cc fei4.hh fei4.cc stib.hh stib.cc
28+
g++ -g -o fei4_dig320 fei4_dig320.cc fei4.cc stib.cc
29+
fei4_analog : fei4_analog.cc fei4.hh fei4.cc stib.hh stib.cc
30+
g++ -g $(ROOTOPTS) -o fei4_analog fei4_analog.cc fei4.cc stib.cc $(ROOTLIBS)
31+
fei4_read_latches : fei4_read_latches.cc fei4.hh fei4.cc stib.hh stib.cc
32+
g++ -g -o fei4_read_latches fei4_read_latches.cc fei4.cc stib.cc
33+
fei4_alive : fei4_alive.cc fei4.hh fei4.cc stib.hh stib.cc
34+
g++ -g $(ROOTOPTS) -o fei4_alive fei4_alive.cc fei4.cc stib.cc $(ROOTLIBS)
35+
fei4_alive320 : fei4_alive320.cc fei4.hh fei4.cc stib.hh stib.cc
36+
g++ -g $(ROOTOPTS) -o fei4_alive320 fei4_alive320.cc fei4.cc stib.cc $(ROOTLIBS)
37+
fei4_plot : fei4_plot.cc fei4.hh fei4.cc stib.hh stib.cc
38+
g++ -g $(ROOTOPTS) -o fei4_plot fei4_plot.cc fei4.cc stib.cc $(ROOTLIBS)
39+
fei4_producer : fei4_producer.cc fei4.hh fei4.cc stib.hh stib.cc
40+
g++ -g $(ROOTOPTS) -o fei4_producer fei4_producer.cc fei4.cc stib.cc -lNew $(ROOTLIBS)
41+
fei4_reg : fei4_reg.cc fei4.hh fei4.cc stib.hh stib.cc
42+
g++ -g -o fei4_reg fei4_reg.cc fei4.cc stib.cc
43+
fei4_latch : fei4_latch.cc fei4.hh fei4.cc stib.hh stib.cc
44+
g++ -g -o fei4_latch fei4_latch.cc fei4.cc stib.cc
45+
fei4_scan : fei4_scan.cc fei4.hh fei4.cc stib.hh stib.cc
46+
g++ -g $(ROOTOPTS) -o fei4_scan fei4_scan.cc fei4.cc stib.cc $(ROOTLIBS)
47+
# fei4_analog : fei4_analog.cc fei4.hh fei4.cc stib.hh stib.cc
48+
# g++ -g $(ROOTOPTS) -o fei4_analog fei4_analog.cc fei4.cc stib.cc $(ROOTLIBS)
49+
fei4_tdac : fei4_tdac.cc fei4.hh fei4.cc stib.hh stib.cc
50+
g++ -g $(ROOTOPTS) -o fei4_tdac fei4_tdac.cc fei4.cc stib.cc $(ROOTLIBS)
51+
fei4_qdac : fei4_qdac.cc fei4.hh fei4.cc stib.hh stib.cc
52+
g++ -g $(ROOTOPTS) -o fei4_qdac fei4_qdac.cc fei4.cc stib.cc $(ROOTLIBS)
53+
fei4_trimfit : fei4_trimfit.cc fei4.hh fei4.cc stib.hh stib.cc
54+
g++ -g $(ROOTOPTS) -o fei4_trimfit fei4_trimfit.cc fei4.cc stib.cc $(ROOTLIBS)
55+
fei4_print : fei4_print.cc fei4.hh fei4.cc stib.hh stib.cc
56+
g++ -g $(ROOTOPTS) -o fei4_print fei4_print.cc fei4.cc stib.cc $(ROOTLIBS)
57+
fei4_pdly : fei4_pdly.cc fei4.hh fei4.cc stib.hh stib.cc
58+
g++ -g $(ROOTOPTS) -o fei4_pdly fei4_pdly.cc fei4.cc stib.cc $(ROOTLIBS)
59+
test_ethio: test_ethio.cc fei4.hh fei4.cc stib.hh stib.cc
60+
g++ -g $(ROOTOPTS) -o test_ethio test_ethio.cc fei4.cc stib.cc $(ROOTLIBS)
61+
fei4_tot : fei4_tot.cc fei4.hh fei4.cc stib.hh stib.cc
62+
g++ -g $(ROOTOPTS) -o fei4_tot fei4_tot.cc fei4.cc stib.cc $(ROOTLIBS)
63+
fei4_checktot : fei4_checktot.cc fei4.hh fei4.cc stib.hh stib.cc
64+
g++ -g $(ROOTOPTS) -o fei4_checktot fei4_checktot.cc fei4.cc stib.cc $(ROOTLIBS)
65+
fei4_self : fei4_self.cc fei4.hh fei4.cc stib.hh stib.cc
66+
g++ -g -o fei4_self fei4_self.cc fei4.cc stib.cc
67+
fei4_self_gui : fei4_self_gui.cc fei4.hh fei4.cc stib.hh stib.cc
68+
g++ -g $(ROOTOPTS) -o fei4_self_gui fei4_self_gui.cc fei4.cc stib.cc $(ROOTLIBS)
69+
fei4_hot : fei4_hot.cc fei4.hh fei4.cc stib.hh stib.cc
70+
g++ -g -o fei4_hot fei4_hot.cc fei4.cc stib.cc
71+
fmc228_dump : fmc228_dump.cc fmc228.hh fmc228.cc stib.hh stib.cc
72+
g++ -g -o fmc228_dump fmc228_dump.cc fmc228.cc stib.cc
73+
fmc228_print : fmc228_print.cc fmc228.hh fmc228.cc stib.hh stib.cc
74+
g++ -g -o fmc228_print fmc228_print.cc fmc228.cc stib.cc
75+
amc502_clocks : amc502_clocks.cc amc502.hh amc502.cc stib.hh stib.cc
76+
g++ -g -o amc502_clocks amc502_clocks.cc amc502.cc stib.cc
77+
amc502_mux : amc502_mux.cc amc502.hh amc502.cc stib.hh stib.cc
78+
g++ -g -o amc502_mux amc502_mux.cc amc502.cc stib.cc
79+
amc502_pll : amc502_pll.cc amc502.hh amc502.cc stib.hh stib.cc
80+
g++ -g -o amc502_pll amc502_pll.cc amc502.cc stib.cc
81+
amc502_lock : amc502_lock.cc amc502.hh amc502.cc stib.hh stib.cc
82+
g++ -g -o amc502_lock amc502_lock.cc amc502.cc stib.cc
83+
amc502_stress : amc502_stress.cc amc502.hh amc502.cc stib.hh stib.cc
84+
g++ -g -o amc502_stress amc502_stress.cc amc502.cc stib.cc
85+
amc502_edges : amc502_edges.cc amc502.hh amc502.cc stib.hh stib.cc
86+
g++ -g -o amc502_edges amc502_edges.cc amc502.cc stib.cc
87+
fmc164_hist : fmc164_hist.cc
88+
g++ -g $(ROOTOPTS) -o fmc164_hist fmc164_hist.cc $(ROOTLIBS)
89+
fmc164_plot : fmc164_plot.cc
90+
g++ -g $(ROOTOPTS) -o fmc164_plot fmc164_plot.cc $(ROOTLIBS)
91+
fmc228_plot : fmc228_plot.cc
92+
g++ -g $(ROOTOPTS) -o fmc228_plot fmc228_plot.cc $(ROOTLIBS)

0 commit comments

Comments
 (0)