Skip to content

Commit d2af164

Browse files
committed
Documentation update
1 parent f59f684 commit d2af164

File tree

4 files changed

+98
-7
lines changed

4 files changed

+98
-7
lines changed

DataModel/README.md

+8-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,8 @@
1-
# DAQFramework
1+
#Data Model
2+
*************************
3+
4+
Data Model Class can be defined how ever the User requires. A Store is provided which ineficently maps variables to string lkeys via conversion to stringstream and can be used for debuging or other useful vairables.
5+
6+
A TTree map with getter and setter functions is provided and can be uncommented if required.
7+
8+

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
# DAQFramework
22

33
****************************
4-
#Consept
4+
#Concept
55
****************************
66

77
The main executable creates a ToolChain which is an object that holds Tools. Tools are added to the ToolChain and then the ToolChain can be told to Initialise Execute and Finalise each tool in the chain.
88

9-
The ToolChain also holds a uesr defined DataModel which each tool ahs access too and can read ,update and modify. This is the method by which data is passed between Tools.
9+
The ToolChain also holds a uesr defined DataModel which each tool has access too and can read ,update and modify. This is the method by which data is passed between Tools.
1010

11-
User Tools can be generated for use in the tool chain by incuding a Tool header.This can be done manually or by use of the newTool.sh script.
11+
User Tools can be generated for use in the tool chain by incuding a Tool header. This can be done manually or by use of the newTool.sh script.
1212

1313
For more information consult the README files in the relavent directories
1414

@@ -37,4 +37,4 @@ To adapt for your own uses you need to:
3737
Create user tools : see README in UserTools/
3838
Modify data model : see README in DataModel/
3939
Modify main : see README in src/
40-
Modify Makefile : For simple applications the only modification needed is to populate the variables for your data model and user tool dependancies.
40+
Modify Makefile : For simple applications the only modification needed is to populate the variables for your data model and user tool dependancies.

configfiles/README.md

+25-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,25 @@
1-
# DAQFramework
1+
# Configure files
2+
3+
***********************
4+
#Description
5+
**********************
6+
7+
Configure files are simple text files for passing variables to the Tools.
8+
9+
Text files are read by the Store class (src/Store) and automatically asigned to an internal map for the relavent Tool to use.
10+
11+
12+
************************
13+
#Useage
14+
************************
15+
16+
Any line starting with a "#" will be ignored by the Store, as will blank lines.
17+
18+
Variables should be stored one per line as follows:
19+
20+
21+
Name Value #Comments
22+
23+
24+
Note: Only one value is permitted per name and they are stored in a string stream and templated cast back to the type given.
25+

src/README.md

+61-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,61 @@
1-
# DAQFramework
1+
# SRC Directory
2+
**************************
3+
4+
5+
Source directory contains the main.cpp and mager framework code incuding:
6+
7+
8+
The virtual Tool.h headder that Usertools should inherit from in order to work in the tool chain.
9+
10+
The ToolChain code for controlling and storing Tools
11+
12+
The Store code for inefficent mapped variable store used in configuration file readin.
13+
14+
The Socket comunication class (work in progress)
15+
16+
17+
18+
***********************
19+
Main.cpp Description
20+
***********************
21+
22+
The main.cpp needs to be endited by the user in order to inculde the necessary tools for use in the DAQ. The current example code loads 1 tool known as DummyTool and then executes the functions Initialise Execute and Finalise on each tool sequenctially.
23+
24+
Code Description:
25+
26+
1) All UserTools that are required in the frame work need their individual headers included along with the ToolChain.h at tthe start of the code
27+
28+
#include "ToolChain.h"
29+
#include "DummyTool.h"
30+
31+
int main(){
32+
33+
34+
2) Each tool and the toolchain need to then be instansiated
35+
36+
37+
ToolChain tools;
38+
DummyTool dummytool;
39+
40+
3) The Tools must then be added to the tool chain one by one in order. Three arguments can be provided when adding the tool (1)tool name in the tool chain, (2) pointer to the tool, (3) conifguration file [optional] .
41+
42+
tools.Add("DummyTool",&dummytool,"configfiles/DummyToolConfig");
43+
44+
45+
4) The ToolChain will will Initialise, then Execute and Finalise each tool in the chain in the order they have been added. The execution of this chain can be done in three ways.
46+
47+
1) Precompiles execution (shown in main.cpp)
48+
49+
tools.Initialise();
50+
tools.Execute();
51+
tools.Finalise();
52+
53+
2) Interactive execution. Initialise execute and finalise can be run via command line as well as start, stop, pause, unpause, and quit.
54+
55+
tools.Interactive();
56+
57+
3) Remote execution. Toolchain commands like interactive and can be passed between processes or computers via TCP.
58+
59+
tools.Remote(portnum);
60+
61+

0 commit comments

Comments
 (0)