Skip to content
Snippets Groups Projects
Commit 3a9f15e7 authored by Giovanna Lazzari Miotto's avatar Giovanna Lazzari Miotto :mushroom:
Browse files

[meta] Restructure repository

Place wzdma and CMSSW files under own subdirectories and move external libraries to a dedicated root-level directory.
Adapt Makefile in src directory accordingly.
parent 3aa9fe83
No related branches found
No related tags found
1 merge request!76[meta,cmake] Restructure project and introduce CMake tooling
File moved
File moved
File moved
File moved
...@@ -13,7 +13,7 @@ TARGET = scdaq ...@@ -13,7 +13,7 @@ TARGET = scdaq
# source files # source files
SOURCES = pipeline.cc config.cc DmaInputFilter.cc FileDmaInputFilter.cc InputFilter.cc MicronDmaInputFilter.cc OutputByOrbit.cc OutputBySize.cc OutputFileHandler.cc processor.cc scdaq.cc session.cc slice.cc TcpInputFilter.cc tools.cc WZDmaInputFilter.cc SOURCES = pipeline.cc config.cc DmaInputFilter.cc FileDmaInputFilter.cc InputFilter.cc MicronDmaInputFilter.cc OutputByOrbit.cc OutputBySize.cc OutputFileHandler.cc processor.cc scdaq.cc session.cc slice.cc TcpInputFilter.cc tools.cc WZDmaInputFilter.cc
C_SOURCES = wz_dma.c C_SOURCES = wzdma/wz_dma.c
# work out names of object files from sources # work out names of object files from sources
OBJECTS = $(SOURCES:.cc=.o) OBJECTS = $(SOURCES:.cc=.o)
...@@ -29,7 +29,7 @@ CXXFLAGS = -std=c++11 -Wall -Wextra -Og -g -rdynamic -Wconversion ...@@ -29,7 +29,7 @@ CXXFLAGS = -std=c++11 -Wall -Wextra -Og -g -rdynamic -Wconversion
CFLAGS = $(CXXFLAGS) CFLAGS = $(CXXFLAGS)
LDFLAGS = -Llibmicron -ltbb -ltbbmalloc -lboost_thread -lboost_chrono -lcurl -lpthread -lcrypto LDFLAGS = -Llibmicron -ltbb -ltbbmalloc -lboost_thread -lboost_chrono -lcurl -lpthread -lcrypto
CPPFLAGS = -I. -Iwzdma CPPFLAGS = -I. -Iwzdma -Icmssw
# default target (to build all) # default target (to build all)
...@@ -64,13 +64,13 @@ FileDmaInputFilter.o: FileDmaInputFilter.h InputFilter.h log.h ...@@ -64,13 +64,13 @@ FileDmaInputFilter.o: FileDmaInputFilter.h InputFilter.h log.h
InputFilter.o: InputFilter.h log.h InputFilter.o: InputFilter.h log.h
OutputBySize.o: OutputBySize.h slice.h log.h OutputBySize.o: OutputBySize.h slice.h log.h
OutputByOrbit.o: OutputByOrbit.h OutputFileHandler.h slice.h log.h OutputFile.h OutputByOrbit.o: OutputByOrbit.h OutputFileHandler.h slice.h log.h OutputFile.h
OutputFileHandler.o: OutputFileHandler.h log.h OutputFile.h FRDFileHeader_v2.h OutputFileHandler.o: OutputFileHandler.h log.h OutputFile.h cmssw/FRDFileHeader_v2.h
processor.o: processor.h slice.h format.h log.h bril_histo.h FRDEventHeader_V6.h FRDFileHeader_v2.h processor.o: processor.h slice.h format.h log.h bril_histo.h cmssw/FRDEventHeader_V6.h cmssw/FRDFileHeader_v2.h
session.o: session.h log.h session.o: session.h log.h
slice.o: slice.h slice.o: slice.h
WZDmaInputFilter.o: WZDmaInputFilter.h InputFilter.h tools.h log.h WZDmaInputFilter.o: WZDmaInputFilter.h InputFilter.h tools.h log.h
TcpInputFilter.o: TcpInputFilter.h InputFilter.h tools.h log.h TcpInputFilter.o: TcpInputFilter.h InputFilter.h tools.h log.h
wz_dma.o: wz_dma.h wz_dma.o: wzdma/wz_dma.h
MicronDmaInputFilter.o: MicronDmaInputFilter.h MicronDmaInputFilter.o: MicronDmaInputFilter.h
tools.o: tools.h log.h tools.o: tools.h log.h
pipeline.o: pipeline.h pipeline.o: pipeline.h
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
#include <utility> #include <utility>
#include <vector> #include <vector>
#include "FRDFileHeader_v2.h" #include "cmssw/FRDFileHeader_v2.h"
#include "tbb/concurrent_queue.h" #include "tbb/concurrent_queue.h"
class OutputFile { class OutputFile {
......
...@@ -8,8 +8,8 @@ ...@@ -8,8 +8,8 @@
#include <thread> #include <thread>
#include <utility> #include <utility>
#include "FRDFileHeader_v2.h"
#include "OutputFile.h" #include "OutputFile.h"
#include "cmssw/FRDFileHeader_v2.h"
#include "format.h" #include "format.h"
#include "tbb/concurrent_queue.h" #include "tbb/concurrent_queue.h"
......
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
#include "config.h" #include "config.h"
#include "tbb/pipeline.h" #include "tbb/pipeline.h"
#include "tbb/tick_count.h" #include "tbb/tick_count.h"
#include "wz_dma.h" #include "wzdma/wz_dma.h"
class WZDmaInputFilter : public InputFilter { class WZDmaInputFilter : public InputFilter {
public: public:
......
File moved
File moved
...@@ -9,8 +9,8 @@ ...@@ -9,8 +9,8 @@
#include <utility> #include <utility>
#include <vector> #include <vector>
#include "FRDEventHeader_V6.h" #include "cmssw/FRDEventHeader_V6.h"
#include "FRDFileHeader_v2.h" #include "cmssw/FRDFileHeader_v2.h"
#include "bril_histo.h" #include "bril_histo.h"
#include "controls.h" #include "controls.h"
#include "format.h" #include "format.h"
......
#ifndef WZ_XDMA_IOCTL_H
#define WZ_XDMA_IOCTL_H 1
#include <sys/types.h> #include <sys/types.h>
#include <unistd.h> #include <unistd.h>
#include <wz-xdma-consts.h> #include "wz-xdma-consts.h"
#include "stdint.h" #include "stdint.h"
#ifndef WZ_XDMA_IOCTL_H
#define WZ_XDMA_IOCTL_H 1
// Structures used to notify the application about the received block of data // Structures used to notify the application about the received block of data
// The block always starts at the first descriptor, and may and in the middle // The block always starts at the first descriptor, and may and in the middle
// of the last descriptor. Hence the structure describing the block consists // of the last descriptor. Hence the structure describing the block consists
......
File moved
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
#define WZ_XDMA_H #define WZ_XDMA_H
#include "stdint.h" #include "stdint.h"
#include "wzdma/xdma-ioctl.h" #include "xdma-ioctl.h"
#define TOT_BUF_LEN ((int64_t)WZ_DMA_BUFLEN * (int64_t)WZ_DMA_NOFBUFS) #define TOT_BUF_LEN ((int64_t)WZ_DMA_BUFLEN * (int64_t)WZ_DMA_NOFBUFS)
struct wz_private { struct wz_private {
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
// TODO: Windows build support // TODO: Windows build support
#include <linux/ioctl.h> #include <linux/ioctl.h>
#endif #endif
#include <wz-xdma-ioctl.h> #include "wz-xdma-ioctl.h"
/* Use 'x' as magic number */ /* Use 'x' as magic number */
#define XDMA_IOC_MAGIC 'x' #define XDMA_IOC_MAGIC 'x'
/* XL OpenCL X->58(ASCII), L->6C(ASCII), O->0 C->C L->6C(ASCII); */ /* XL OpenCL X->58(ASCII), L->6C(ASCII), O->0 C->C L->6C(ASCII); */
......
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