~christopher-hunt08/maus/maus_integrated_kalman

« back to all changes in this revision

Viewing changes to doc/doc_src/reconstruction/globalpid/pidflow.dot

  • Committer: Durga Rajaram
  • Date: 2014-07-16 15:13:05 UTC
  • mfrom: (659.1.92 cand)
  • Revision ID: durga@fnal.gov-20140716151305-q27rv1y9p03v9lks
Tags: MAUS-v0.9, MAUS-v0.9.0
MAUS-v0.9.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
digraph pidflow {
 
2
subgraph cluster0 {
 
3
node [style=filled,color=white];
 
4
style=filled;
 
5
color=lightgrey;
 
6
b2 -> b3 -> b4;
 
7
b2 [shape=box,label="Calculate PID variable for global track"];
 
8
b3 [shape=box,label="Open corresponding PDFs and find number\nof entries (likelihood) for variable,\nfor all particle hypotheses"];
 
9
b4 [shape=box,label="Calculate log-likelihood for variable"];
 
10
label="Loop through PID variables";
 
11
}
 
12
b0 -> b1 -> b2;
 
13
b4 -> b5 -> b6;
 
14
b0 [shape=box,label="Get track from global reconstruction"];
 
15
b1 [shape=box,label="Pass reconstructed track to PID"];
 
16
b5 [shape=box,label="For each hypothesis, sum log-likelihoods\nfrom PID variables"];
 
17
b6 [shape=box,label="Compare summed log-likelihoods for each\nhypothesis to determine PID"];
 
18
}