Project

General

Profile

Tests Programming » History » Version 1

Ole Hansen, 03/05/2018 03:13 PM

1 1 Ole Hansen
h1. Dynamically defined logical expressions (tests/cuts)
2
3
h2. Overview
4
5
A useful feature of Podd is the ability to define arithmetic and logical expressions dynamically (on the fly) without the need to recompile any code. Underlying both types of expressions are "global variables" that are represented by the "@THaVar@":http://hallaweb.jlab.org/podd/html/THaVar.html class and collected in the global variable list "@THaVarList@":http://hallaweb.jlab.org/podd/html/THaVarList.html. Each analysis module (detector, apparatus, physics module) normally adds internal variables of interest to the global variable list @gHaVars@ as part of its [[Writing Detector Code#Initialization|initialization]] and removes those variables from the list in its destructor. For an example, see "@THaScintillator@":http://hallaweb.jlab.org/podd/html/THaScintillator.html. In this way, analysis results are conveniently available for use in expressions and by "@THaOutput@":http://hallaweb.jlab.org/podd/html/THaVarList.html.
6
7
Arithmetic expression parsing is implemented via the "@THaFormula@":http://hallaweb.jlab.org/podd/html/THaFormula.html class, while tests/cuts are special cases of @THaFormula@s which evaluate to either 1 or 0 (true or false) and are represented by the "@THaCut@":http://hallaweb.jlab.org/podd/html/THaCut.html class. In the C++ analyzer, @THaFormulas@ are primarily used in the "@THaOutput@":http://hallaweb.jlab.org/podd/html/THaOutout.html system, while @THaCuts@ are used for two purposes: (1) in @THaOutput@ as conditions on histograms; and (2) to control the flow of the data analysis in the standard analysis algorithm. The latter is supported by a special global list of tests, "@THaCutList@":http://hallaweb.jlab.org/podd/html/THaCutList.html, @THaCutList@ supports the concept of "blocks" of cuts which can be evaluated as a unit. Blocks are evaluated at the end of each stage of the analysis (Decode/Reconstruct/Physics).
8
9
The interactive interface to the analyzer, "@THaInterface@":http://hallaweb.jlab.org/podd/html/THaInterface.html, automatically creates an instance of "@THaVarList@":http://hallaweb.jlab.org/podd/html/THaVarList.html and "@THaCutList@":http://hallaweb.jlab.org/podd/html/THaCutList.html upon startup. These are called the "global variable list" and "global cut list", respectively. They are accessible via the global program variables @gHaVars@ and @gHaCuts@ from anywhere in the analyzer if you  include @THaGlobals.h@.
10
11
h2. Examples
12
13
A short tutorial on using the test/cut classes along with the global variable system follows. As mentioned, the relevant classes are:
14
15
* "@THaCutList@":http://hallaweb.jlab.org/podd/html/THaCutList.html -- Define and evaluate cuts. Automatically manages cuts with the help of internal lists.
16
* "@THaVarList@":http://hallaweb.jlab.org/podd/html/THaVarList.html -- Manage "global" symbolic variables.
17
* "@THaCut@":http://hallaweb.jlab.org/podd/html/THaCut.html -- Definition of a single cut. This is a low-level class which should normally only be used internally by @THaCutList@.
18
* "@THaVar@":http://hallaweb.jlab.org/podd/html/THaVar.html -- Definition of a single symbolic variable. This is a low-level class which should normally only be used internally by @THaVarList@.
19
20
Here is a sample session to demonstrate the use of these classes:
21
22
<pre>
23
analyzer [0] double xvar=10             // Define a variable xvar
24
analyzer [1] gHaVars->Define("x",xvar)  // Add xvar to global var list, name it "x"
25
analyzer [2] gHaVars->PrintFull()       // Show all global vars defined including their current values
26
  OBJ: THaVar     x     x
27
  (Double_t)[1]  10
28
29
analyzer [3] gHaCuts->Define("cut1","x>0")      // Define a cut named "cut1" that is true if x>0.
30
analyzer [4] gHaCuts->Define("cut2","abs(x)>5") // dto., but |x|>5
31
analyzer [5] gHaCuts->Print()                   // List all defined cuts
32
  Name  Def       T  Block    Called     Passed
33
  -------------------------------------------------
34
  cut1  x>0       0  Default  0          0 (0.0%)
35
  cut2  abs(x)>5  0  Default  0          0 (0.0%)
36
37
analyzer [6] gHaCuts->Eval()                   // Evaluate all defined cuts
38
analyzer [7] gHaCuts->Print()
39
  Name  Def       T  Block    Called     Passed
40
  -------------------------------------------------
41
  cut1  x>0       1  Default  1          1 (100%)
42
  cut2  abs(x)>5  1  Default  1          1 (100%)
43
44
(Note the current value ("T") of each of the cuts. Both are true since both
45
conditions are true for x=10).
46
47
analyzer [8] xvar=2                           // Give xvar a new value
48
analyzer [9] gHaCuts->Eval()                  // Evaluate the cuts again
49
analyzer [10] gHaCuts->Print()
50
  Name  Def       T  Block    Called     Passed
51
  -------------------------------------------------
52
  cut1  x>0       1  Default  2          2 (100%)
53
  cut2  abs(x)>5  0  Default  2          1 (50%)
54
55
(Note that cut2 is now false since |x| is less than 5.)
56
57
analyzer [11] gHaCuts->Result("cut2")        // Retrieve result of cut2
58
                                             // NB: This does not re-evaluate the cut
59
  (Int_t)0
60
analyzer [11] gHaCuts->Result("cut1")
61
  (Int_t)1
62
</pre>
63
Tests may refer to other tests already defined in gHaCuts. When evaluating cuts containing other tests, the referenced tests are not re-evaluated, but the result of their last evaluation is used (as in the call to "@THaCutList::Result()@":http://hallaweb.jlab.org/podd/html/THaCutList.html#THaCutList:Result above). This ensures that the test statistics (i.e. number of calls/number of passes) remain consistent when evaluating all the tests for an event. Here's an example, continuing from above:
64
<pre>
65
analyzer [12] gHaCuts->Define("cut3","cut1&&!cut2") // Define cut based on two previously-defined cuts
66
analyzer [13] gHaCuts->Eval()                       // Evaluate defined cuts again
67
analyzer [14] gHaCuts->Print()
68
  Name  Def          T  Block    Called     Passed
69
  ----------------------------------------------------
70
  cut1  x>0          1  Default  3          3 (100%)
71
  cut2  abs(x)>5     0  Default  3          1 (33.3%)
72
  cut3  cut1&&!cut2  1  Default  1          1 (100%)
73
</pre>