Running Moore

Broadly speaking, Moore is a repository of Python files which can be used to configure a Gaudi application. In this way, “running Moore” is the same as running any other LHCb application (such as Brunel or DaVinci):

lb-run Moore/latest gaudirun.py some_options_file.py

The interesting part is the contents of the options files passed to gaudirun.py, which can define application configuration such as for HLT1 or HLT2.

This page details some of the specifics of running these applications, which can be useful if you’re developing Moore itself or authoring a trigger selection.

Choosing a version

Versioned releases of the Moore project are made periodically. Releases are required to run Moore in the Online environment and in productions on the Grid.

Releases can be useful for individuals to quickly run options files. The version of Moore you choose depends on the task: if you want to reproduce a particular result then choose the same version, but if you just want to run something then choosing the latest version is usually sufficient.

Note

When changing between versions, it’s useful to check the release notes. These list the changes made since the previous release.

Released versions of Moore can be run using lb-run with the version number you’re interested in:

lb-run Moore/v50r0 gaudirun.py some_options_file.py

If you want to be able to make changes to Moore, you should consult the Developing Moore page for instructions on how to get started. Once that’s done, you’ll be able to run Moore like this:

./Moore/run gaudirun.py some_options_file.py

From now on, this page will assume you’re running your own development version of Moore. If that’s not the case, you can still run the examples beginning with ./Moore/run by replacing this part with lb-run Moore/<version>.

The first run

We’re going to end up with an options file that runs HLT1 (yes, really!). Let’s start by placing these lines into a file called hlt1_example.py:

from Moore import options, run_moore


def make_lines():
    return []


run_moore(options, make_lines)

What are all these things we’re importing, and why are we defining this almost-empty function? It’s always worth remembering that this is just Python, so we can inspect objects and poke around as usual. Just use python -i to run the code (rather than gaudirun.py to run the application) and get an interactive prompt:

$ ./Moore/run python -i hlt1_example.py
<...some logs...>
>>> help(options)
Help on ApplicationOptions in module PyConf.application object:

class ApplicationOptions(GaudiKernel.Configurable.ConfigurableUser)
 |  Holder for application configuration.
 |
 |  Configuration can be mutated until `.finalize()` is called. At that
 |  point any dynamic defaults based on other properties are resolved.
 |

We’ve used the help() builtin to see that the options object is a “Holder for application configuration” (an instance of ApplicationOptions). What parameters it holds can be seen by printing it:

>>> print(options)
/***** User ApplicationOptions/ApplicationOptions **************************************************
|-use_iosvc         = False  (default: False)
|-histo_file        = ''  (default: '')
|-data_type         = 'Upgrade'  (default: 'Upgrade')
|-input_type        = ''  (default: '')
|-output_file       = ''  (default: '')
|-n_event_slots     = 1  (default: -1)
|-simulation        = True  (default: True)
|-output_level      = 3  (default: 3)
|-event_store       = 'HiveWhiteBoard'  (default: 'HiveWhiteBoard')
|-data_flow_file    = 'data_flow.gv'  (default: '')
|-input_raw_format  = 0.5  (default: 0.5)
|-dddb_tag          = ''  (default: '')
|-control_flow_file = 'control_flow.gv'  (default: '')
|-output_type       = ''  (default: '')
|-n_threads         = 1  (default: 1)
|-conddb_tag        = ''  (default: '')
|-evt_max           = -1  (default: -1)
|-input_files       = []  (default: [])
\----- (End of User ApplicationOptions/ApplicationOptions) -----------------------------------------

These are fairly self explanatory if you’ve run a LHCb applications before. Most of the default values are sufficient for running Moore.

Next, run help(run_moore) and read the documentation for Moore.run_moore. You’ll see that this is an important helper function; it will do some work behind the scenes to set up the full application configuration, given the options object we’ve just been looking at and a make_lines function.

The line-maker function we’ve written in our example returns an empty list, so we’re not running any specific algorithms. Let’s exit the Python shell and try running the application:

./Moore/run gaudirun.py hlt1_example.py

In the log that follows, you’ll see an error message!:1

PyConf.utilities.ConfigurationError: Required options not set: ['input_type', 'dddb_tag', ‘conddb_tag']

Moore is telling us, rather cryptically, that it doesn’t have all the information it needs to run our options. In this case, it’s because it doesn’t know what type of input data we have. Without knowing about the input data, which defines, for example, how the raw event is laid out, it cannot unambiguously configure the application context.

Note

Even though we haven’t told Moore to run anything, it will run some default algorithms such as DecReport and SelReport creators, and an output writer. These algorithms need to know what the input data looks like, so cannot be configured without us giving Moore some input data.

To remedy this, we can use some input data from the test file database. If you look at the output of help(options), you’ll see the options.set_input_and_conds_from_testfiledb method can help us.

Create a new options file called input_data.py with the following contents:

from Moore import options

options.evt_max = 100
options.set_input_and_conds_from_testfiledb("MiniBrunel_2018_MinBias_FTv4_MDF")

Aside from the input, this also sets the conditions to run under. The conditions define how to correctly interpret the input data (e.g. how the IDs in the raw data translate to detector geometry) but also how to process them (e.g. which VELO alignment constants to use, which affects the VELO tracking). Most often the conditions that you’ll use are those used during data taking or for the MC production, however they can be different in specific cases.

Re-run the application, now including the additional options file:

./Moore/run gaudirun.py input_data.py hlt1_example.py

Note

The order of options files is important. Because the run_moore function is called in hlt1_example.py, we must do all configuration before that point. The gaudirun.py script will execute each options file one-by-one, so we put other files before the ‘main’ options file.

The application will run, but comes to an abrupt stop with an error message:

assert hlt1 ^ hlt2 ^ spruce ^ passthrough, 'Expected exclusively all Hlt1, all Hlt2, all Spruce or all Pass lines' \
AssertionError: Expected exclusively all Hlt1, all Hlt2, all Spruce or all Pass lines

This is actually good news! The Python configuration completed successfully and the application began running. A C++ algorithm then stopped the execution because, quite rightly, we didn’t define any lines to run. So let’s do that!

Note

Understand the you are now running Moore. The general pattern of the two options files you’ve created is important to grasp:

  1. Application-wide parameters are defined on the options object. This is accessible across each options file you pass to gaudirun.py (it is global).

  2. You explictly configure a Moore application using the run_moore function. This takes the application-wide options object and a function that creates the Control flow and (by extension) the data flow, and configures required services.

Running all HLT1 lines

The way a line is defined isn’t particularly important here, so we’ll just use a helper that gives us all default HLT1 lines. More information on writing lines can be found on the Writing an HLT2 line page.

In our hlt1_example.py file, we’ll using a function already in Moore called all_lines:

from Moore import options, run_moore
from Hlt1Conf.settings import all_lines

run_moore(options, all_lines)

Run the application as before, and you’ll see it completes successfully. 🎉

This covers the important aspects of of getting up and running with Moore. If you’re used to configuring applications like DaVinci, things are much more explicit, so although it may feel very different the idea is that the configuration as a whole is easier to reason about.

Analysing the output

Moore comes with several tools for debugging applications, but the most important is always the application log, that is the print-out you see in your terminal. There is a wealth of information in the log, so it’s worth getting familiar with it.

Control flow table

Near the bottom of the log is a representation of the control flow tree. The top level node, moore, contains the hlt_decision node and the report_writers node. The former contains one node per line as defined by the all_lines function we passed to run_moore, whilst the latter contains algorithms for writing output files. Child nodes can be identified by their indentation.

LAZY_AND: moore                                                                   #=100     Sum=5           Eff=|( 5.000000 +- 2.17945 )%|
 NONLAZY_OR: hlt_decision                                                         #=100     Sum=5           Eff=|( 5.000000 +- 2.17945 )%|
  LAZY_AND: Hlt1TrackMVA                                                          #=100     Sum=3           Eff=|( 3.000000 +- 1.70587 )%|
   DeterministicPrescaler/DeterministicPrescaler                                  #=100     Sum=100         Eff=|( 100.0000 +- 0.00000 )%|
   PrGECFilter/PrGECFilter                                                        #=100     Sum=96          Eff=|( 96.00000 +- 1.95959 )%|
   VoidFilter/require_pvs                                                         #=96      Sum=95          Eff=|( 98.95833 +- 1.03623 )%|
   PrFilter__PrFittedForwardTracksWithPVs/PrFilter__PrFittedForwardTracksWithPVs  #=95      Sum=3           Eff=|( 3.157895 +- 1.79419 )%|
  LAZY_AND: Hlt1TwoTrackMVA                                                       #=100     Sum=1           Eff=|( 1.000000 +- 0.994987)%|
   <...>
  <...>
 NONLAZY_OR: report_writers                                                       #=5       Sum=5           Eff=|( 100.0000 +- 0.00000 )%|
  bankKiller/bankKiller                                                           #=5       Sum=5           Eff=|( 100.0000 +- 0.00000 )%|
  ExecutionReportsWriter/ExecutionReportsWriter                                   #=5       Sum=5           Eff=|( 100.0000 +- 0.00000 )%|
  HltDecReportsWriter/HltDecReportsWriter                                         #=5       Sum=5           Eff=|( 100.0000 +- 0.00000 )%|

(You’ll need to scroll horizontally to see the full table.)

Control flow nodes can, unsurprisingly, control the execution flow of the application by returning an ‘accept’ or ‘reject’ status. The fraction of ‘accept’ statuses from each node is given in the right-most column, and is relative to the number of times the node was executed.

Each control flow node can have child algorithms and child control flow nodes. How a parent decides which of its child to execute, given their return statuses, is determined by its node logic, as enumerated in PyConf.control_flow.NodeLogic.

The control flow table is extremely useful in understanding how the application is filtering events. We can see that HLT1 accepted 5 events in total in our example, with 3 of them being accepted by at least the Hlt1TrackMVA (again, the numbers may be slightly different depending on the version of Moore).

Data and control flow graphs

You can get Moore.run_moore to generate data and control flow graphs if you manually configure it with:

options.control_flow_file = 'control_flow.gv'
options.data_flow_file = 'data_flow.gv'

The outputs are Graphviz source files, which can be converted into images.

To convert the source files, the dot program must be available on your system. It is installed on lxplus, so you can transfer the source files there if you don’t have it on your development machine. An example command to generate a PDF of the control flow graph is:

dot -Tpdf control_flow.gv > control_flow.pdf

You can similarly generate PNG, SVG, and other file types.

The data flow graph for our example looks like this:2

strict digraph "Data flow" {
label="Data flow generated at Mon Apr 08 09:57:58 2024";
rankdir=LR;
node [shape=box];
subgraph "cluster_DeterministicPrescaler/Hlt1DiMuonHighMass_Prescaler" {
bgcolor=aliceblue;
label="";
"DeterministicPrescaler/Hlt1DiMuonHighMass_Prescaler" [label=<<B>DeterministicPrescaler/Hlt1DiMuonHighMass_Prescaler</B><BR/>AcceptFraction = 1.0<BR/>SeedName = Hlt1DiMuonHighMassPrescaler>, shape=plaintext];
"DeterministicPrescaler/Hlt1DiMuonHighMass_Prescaler_in_ODINLocation" [fillcolor=deepskyblue1, label=ODINLocation, style=filled];
"DeterministicPrescaler/Hlt1DiMuonHighMass_Prescaler" -> "DeterministicPrescaler/Hlt1DiMuonHighMass_Prescaler_in_ODINLocation"  [minlen=0, style=invis];
}

"createODIN/Decode_ODIN_out_ODIN" -> "DeterministicPrescaler/Hlt1DiMuonHighMass_Prescaler_in_ODINLocation";
subgraph "cluster_createODIN/Decode_ODIN" {
bgcolor=aliceblue;
label="";
"createODIN/Decode_ODIN" [label=<<B>createODIN/Decode_ODIN</B><BR/>defaults-only>, shape=plaintext];
"createODIN/Decode_ODIN_in_RawBanks" [fillcolor=deepskyblue1, label=RawBanks, style=filled];
"createODIN/Decode_ODIN" -> "createODIN/Decode_ODIN_in_RawBanks"  [minlen=0, style=invis];
"createODIN/Decode_ODIN_out_ODIN" [fillcolor=coral1, label=ODIN, style=filled];
"createODIN/Decode_ODIN" -> "createODIN/Decode_ODIN_out_ODIN"  [minlen=0, style=invis];
}

"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_out_RawBankLocations" -> "createODIN/Decode_ODIN_in_RawBanks";
subgraph "cluster_LHCb::UnpackRawEvent/UnpackRawEvent_ODIN" {
bgcolor=aliceblue;
label="";
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN" [label=<<B>LHCb::UnpackRawEvent/UnpackRawEvent_ODIN</B><BR/>BankTypes = [&#x27;ODIN&#x27;]<BR/>RawBankLocations = /Event/RawBanks/ODIN>, shape=plaintext];
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_in_RawEventLocation" [fillcolor=deepskyblue1, label=RawEventLocation, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN" -> "LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_in_RawEventLocation"  [minlen=0, style=invis];
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_out_RawBankLocations" [fillcolor=coral1, label=RawBankLocations, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN" -> "LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_out_RawBankLocations"  [minlen=0, style=invis];
}

"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" -> "LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_in_RawEventLocation";
subgraph "cluster_Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent" {
bgcolor=aliceblue;
label="";
"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent" [label=<<B>Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent</B><BR/>Output = /Event/DAQ/RawEvent>, shape=plaintext];
"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" [fillcolor=coral1, label=Output, style=filled];
"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent" -> "Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output"  [minlen=0, style=invis];
}

subgraph "cluster_PrGECFilter/DefaultGECFilter" {
bgcolor=aliceblue;
label="";
"PrGECFilter/DefaultGECFilter" [label=<<B>PrGECFilter/DefaultGECFilter</B><BR/>SkipUT = False<BR/>NumberFTUTClusters = 9750>, shape=plaintext];
"PrGECFilter/DefaultGECFilter_in_FTRawBanks" [fillcolor=deepskyblue1, label=FTRawBanks, style=filled];
"PrGECFilter/DefaultGECFilter" -> "PrGECFilter/DefaultGECFilter_in_FTRawBanks"  [minlen=0, style=invis];
"PrGECFilter/DefaultGECFilter_in_UTRawBanks" [fillcolor=deepskyblue1, label=UTRawBanks, style=filled];
"PrGECFilter/DefaultGECFilter" -> "PrGECFilter/DefaultGECFilter_in_UTRawBanks"  [minlen=0, style=invis];
}

"LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster_out_RawBankLocations" -> "PrGECFilter/DefaultGECFilter_in_FTRawBanks";
subgraph "cluster_LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster" {
bgcolor=aliceblue;
label="";
"LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster" [label=<<B>LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster</B><BR/>BankTypes = [&#x27;FTCluster&#x27;]<BR/>RawBankLocations = /Event/RawBanks/FTCluster>, shape=plaintext];
"LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster_in_RawEventLocation" [fillcolor=deepskyblue1, label=RawEventLocation, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster" -> "LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster_in_RawEventLocation"  [minlen=0, style=invis];
"LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster_out_RawBankLocations" [fillcolor=coral1, label=RawBankLocations, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster" -> "LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster_out_RawBankLocations"  [minlen=0, style=invis];
}

"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" -> "LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster_in_RawEventLocation";
subgraph "cluster_Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent" {
bgcolor=aliceblue;
label="";
"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent" [label=<<B>Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent</B><BR/>Output = /Event/DAQ/RawEvent>, shape=plaintext];
"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" [fillcolor=coral1, label=Output, style=filled];
"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent" -> "Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output"  [minlen=0, style=invis];
}

"LHCb::UnpackRawEvent/UnpackRawEvent_UT_out_RawBankLocations" -> "PrGECFilter/DefaultGECFilter_in_UTRawBanks";
subgraph "cluster_LHCb::UnpackRawEvent/UnpackRawEvent_UT" {
bgcolor=aliceblue;
label="";
"LHCb::UnpackRawEvent/UnpackRawEvent_UT" [label=<<B>LHCb::UnpackRawEvent/UnpackRawEvent_UT</B><BR/>BankTypes = [&#x27;UT&#x27;]<BR/>RawBankLocations = /Event/RawBanks/UT>, shape=plaintext];
"LHCb::UnpackRawEvent/UnpackRawEvent_UT_in_RawEventLocation" [fillcolor=deepskyblue1, label=RawEventLocation, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_UT" -> "LHCb::UnpackRawEvent/UnpackRawEvent_UT_in_RawEventLocation"  [minlen=0, style=invis];
"LHCb::UnpackRawEvent/UnpackRawEvent_UT_out_RawBankLocations" [fillcolor=coral1, label=RawBankLocations, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_UT" -> "LHCb::UnpackRawEvent/UnpackRawEvent_UT_out_RawBankLocations"  [minlen=0, style=invis];
}

"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" -> "LHCb::UnpackRawEvent/UnpackRawEvent_UT_in_RawEventLocation";
subgraph "cluster_VoidFilter/require_pvs" {
bgcolor=aliceblue;
label="";
"VoidFilter/require_pvs" [label=<<B>VoidFilter/require_pvs</B><BR/>Cut = ( ( SIZE_OF @ _TES(DataHandles=[DataHandle(&#x27;/Event[...]LHCb::Event::PV::PrimaryVertexContainer&#x27;]) ) &gt; 0 )>, shape=plaintext];
"VoidFilter/require_pvs_in_Cut_PyConfDataDependencies" [fillcolor=deepskyblue1, label=Cut_PyConfDataDependencies, style=filled];
"VoidFilter/require_pvs" -> "VoidFilter/require_pvs_in_Cut_PyConfDataDependencies"  [minlen=0, style=invis];
}

"TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_out_OutputVertices" -> "VoidFilter/require_pvs_in_Cut_PyConfDataDependencies";
subgraph "cluster_TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c" {
bgcolor=aliceblue;
label="";
"TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c" [label=<<B>TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c</B><BR/>MinZ = -600.0>, shape=plaintext];
"TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_in_TracksLocation" [fillcolor=deepskyblue1, label=TracksLocation, style=filled];
"TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c" -> "TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_in_TracksLocation"  [minlen=0, style=invis];
"TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_in_TracksBackwardLocation" [fillcolor=deepskyblue1, label=TracksBackwardLocation, style=filled];
"TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c" -> "TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_in_TracksBackwardLocation"  [minlen=0, style=invis];
"TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_out_OutputVertices" [fillcolor=coral1, label=OutputVertices, style=filled];
"TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c" -> "TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_out_OutputVertices"  [minlen=0, style=invis];
}

"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksLocation" -> "TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_in_TracksLocation";
subgraph "cluster_VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651" {
bgcolor=aliceblue;
label="";
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651" [label=<<B>VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651</B><BR/>SensorMasks = (False, False, False, False, False, False, False, [...], False, False, False, False, False, False, False)<BR/>MaxScatterSeeding = 0.1<BR/>MaxScatterForwarding = 0.1<BR/>MaxScatter3hits = 0.02<BR/>SkipForward = 1>, shape=plaintext];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_in_RawBanks" [fillcolor=deepskyblue1, label=RawBanks, style=filled];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651" -> "VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_in_RawBanks"  [minlen=0, style=invis];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksLocation" [fillcolor=coral1, label=TracksLocation, style=filled];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651" -> "VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksLocation"  [minlen=0, style=invis];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksBackwardLocation" [fillcolor=coral1, label=TracksBackwardLocation, style=filled];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651" -> "VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksBackwardLocation"  [minlen=0, style=invis];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_HitsLocation" [fillcolor=coral1, label=HitsLocation, style=filled];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651" -> "VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_HitsLocation"  [minlen=0, style=invis];
}

"LHCb::UnpackRawEvent/UnpackRawEvent_VP_out_RawBankLocations" -> "VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_in_RawBanks";
subgraph "cluster_LHCb::UnpackRawEvent/UnpackRawEvent_VP" {
bgcolor=aliceblue;
label="";
"LHCb::UnpackRawEvent/UnpackRawEvent_VP" [label=<<B>LHCb::UnpackRawEvent/UnpackRawEvent_VP</B><BR/>BankTypes = [&#x27;VP&#x27;]<BR/>RawBankLocations = /Event/RawBanks/VP>, shape=plaintext];
"LHCb::UnpackRawEvent/UnpackRawEvent_VP_in_RawEventLocation" [fillcolor=deepskyblue1, label=RawEventLocation, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_VP" -> "LHCb::UnpackRawEvent/UnpackRawEvent_VP_in_RawEventLocation"  [minlen=0, style=invis];
"LHCb::UnpackRawEvent/UnpackRawEvent_VP_out_RawBankLocations" [fillcolor=coral1, label=RawBankLocations, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_VP" -> "LHCb::UnpackRawEvent/UnpackRawEvent_VP_out_RawBankLocations"  [minlen=0, style=invis];
}

"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" -> "LHCb::UnpackRawEvent/UnpackRawEvent_VP_in_RawEventLocation";
subgraph "cluster_Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent" {
bgcolor=aliceblue;
label="";
"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent" [label=<<B>Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent</B><BR/>Output = /Event/DAQ/RawEvent>, shape=plaintext];
"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" [fillcolor=coral1, label=Output, style=filled];
"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent" -> "Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output"  [minlen=0, style=invis];
}

"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksBackwardLocation" -> "TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_in_TracksBackwardLocation";
subgraph "cluster_CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_2bd09f7a" {
bgcolor=aliceblue;
label="";
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_2bd09f7a" [label=<<B>CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_2bd09f7a</B><BR/>AssumedMass = mu+<BR/>CombinationCut = ( ( MAXSDOCA &lt; 0.2 ) &amp; ( MAXSDOCACHI2 &lt; 25.0 ) )<BR/>VertexCut = ( ( ( VALUE_OR(Value=nan) @ _CHI2DOF ) &lt; 25.0 ) &amp; ( MASS &gt; 2700.0 ) )>, shape=plaintext];
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_2bd09f7a_in_InputUniqueIDGenerator" [fillcolor=deepskyblue1, label=InputUniqueIDGenerator, style=filled];
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_2bd09f7a" -> "CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_2bd09f7a_in_InputUniqueIDGenerator"  [minlen=0, style=invis];
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_2bd09f7a_in_InputTracks" [fillcolor=deepskyblue1, label=InputTracks, style=filled];
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_2bd09f7a" -> "CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_2bd09f7a_in_InputTracks"  [minlen=0, style=invis];
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_2bd09f7a_in_CombinationCut_PyConfDataDependencies" [fillcolor=deepskyblue1, label=CombinationCut_PyConfDataDependencies, style=filled];
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_2bd09f7a" -> "CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_2bd09f7a_in_CombinationCut_PyConfDataDependencies"  [minlen=0, style=invis];
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_2bd09f7a_in_VertexCut_PyConfDataDependencies" [fillcolor=deepskyblue1, label=VertexCut_PyConfDataDependencies, style=filled];
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_2bd09f7a" -> "CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_2bd09f7a_in_VertexCut_PyConfDataDependencies"  [minlen=0, style=invis];
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_2bd09f7a_out_Output" [fillcolor=coral1, label=Output, style=filled];
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_2bd09f7a" -> "CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_2bd09f7a_out_Output"  [minlen=0, style=invis];
}

"UniqueIDGeneratorAlg/UniqueIDGeneratorAlg_26e527e9_out_Output" -> "CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_2bd09f7a_in_InputUniqueIDGenerator";
subgraph "cluster_UniqueIDGeneratorAlg/UniqueIDGeneratorAlg_26e527e9" {
bgcolor=aliceblue;
label="";
"UniqueIDGeneratorAlg/UniqueIDGeneratorAlg_26e527e9" [label=<<B>UniqueIDGeneratorAlg/UniqueIDGeneratorAlg_26e527e9</B><BR/>defaults-only>, shape=plaintext];
"UniqueIDGeneratorAlg/UniqueIDGeneratorAlg_26e527e9_out_Output" [fillcolor=coral1, label=Output, style=filled];
"UniqueIDGeneratorAlg/UniqueIDGeneratorAlg_26e527e9" -> "UniqueIDGeneratorAlg/UniqueIDGeneratorAlg_26e527e9_out_Output"  [minlen=0, style=invis];
}

"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1d9541b1_out_Output" -> "CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_2bd09f7a_in_InputTracks";
subgraph "cluster_PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1d9541b1" {
bgcolor=aliceblue;
label="";
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1d9541b1" [label=<<B>PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1d9541b1</B><BR/>Cut = FILTER(Functor=( ISMUON &amp; ( ( MAGNITUDE @ THREEMOM[...] ( ( VALUE_OR(Value=nan) @ _CHI2DOF ) &lt; 100.0 ) ))>, shape=plaintext];
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1d9541b1_in_Input" [fillcolor=deepskyblue1, label=Input, style=filled];
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1d9541b1" -> "PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1d9541b1_in_Input"  [minlen=0, style=invis];
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1d9541b1_in_Cut_PyConfDataDependencies" [fillcolor=deepskyblue1, label=Cut_PyConfDataDependencies, style=filled];
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1d9541b1" -> "PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1d9541b1_in_Cut_PyConfDataDependencies"  [minlen=0, style=invis];
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1d9541b1_out_OutputStorage" [fillcolor=coral1, label=OutputStorage, style=filled];
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1d9541b1" -> "PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1d9541b1_out_OutputStorage"  [minlen=0, style=invis];
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1d9541b1_out_Output" [fillcolor=coral1, label=Output, style=filled];
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1d9541b1" -> "PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1d9541b1_out_Output"  [minlen=0, style=invis];
}

"MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89_out_Output" -> "PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1d9541b1_in_Input";
subgraph "cluster_MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89" {
bgcolor=aliceblue;
label="";
"MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89" [label=<<B>MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89</B><BR/>defaults-only>, shape=plaintext];
"MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89_in_Input1" [fillcolor=deepskyblue1, label=Input1, style=filled];
"MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89" -> "MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89_in_Input1"  [minlen=0, style=invis];
"MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89_in_Input2" [fillcolor=deepskyblue1, label=Input2, style=filled];
"MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89" -> "MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89_in_Input2"  [minlen=0, style=invis];
"MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89_out_Output" [fillcolor=coral1, label=Output, style=filled];
"MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89" -> "MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89_out_Output"  [minlen=0, style=invis];
}

"VeloKalman/VeloKalman_bf73c006_out_OutputTracksLocation" -> "MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89_in_Input1";
subgraph "cluster_VeloKalman/VeloKalman_bf73c006" {
bgcolor=aliceblue;
label="";
"VeloKalman/VeloKalman_bf73c006" [label=<<B>VeloKalman/VeloKalman_bf73c006</B><BR/>defaults-only>, shape=plaintext];
"VeloKalman/VeloKalman_bf73c006_in_HitsLocation" [fillcolor=deepskyblue1, label=HitsLocation, style=filled];
"VeloKalman/VeloKalman_bf73c006" -> "VeloKalman/VeloKalman_bf73c006_in_HitsLocation"  [minlen=0, style=invis];
"VeloKalman/VeloKalman_bf73c006_in_TracksVPLocation" [fillcolor=deepskyblue1, label=TracksVPLocation, style=filled];
"VeloKalman/VeloKalman_bf73c006" -> "VeloKalman/VeloKalman_bf73c006_in_TracksVPLocation"  [minlen=0, style=invis];
"VeloKalman/VeloKalman_bf73c006_in_TracksFTLocation" [fillcolor=deepskyblue1, label=TracksFTLocation, style=filled];
"VeloKalman/VeloKalman_bf73c006" -> "VeloKalman/VeloKalman_bf73c006_in_TracksFTLocation"  [minlen=0, style=invis];
"VeloKalman/VeloKalman_bf73c006_in_UniqueIDGenerator" [fillcolor=deepskyblue1, label=UniqueIDGenerator, style=filled];
"VeloKalman/VeloKalman_bf73c006" -> "VeloKalman/VeloKalman_bf73c006_in_UniqueIDGenerator"  [minlen=0, style=invis];
"VeloKalman/VeloKalman_bf73c006_out_OutputTracksLocation" [fillcolor=coral1, label=OutputTracksLocation, style=filled];
"VeloKalman/VeloKalman_bf73c006" -> "VeloKalman/VeloKalman_bf73c006_out_OutputTracksLocation"  [minlen=0, style=invis];
}

"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_HitsLocation" -> "VeloKalman/VeloKalman_bf73c006_in_HitsLocation";
subgraph "cluster_VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651" {
bgcolor=aliceblue;
label="";
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651" [label=<<B>VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651</B><BR/>SensorMasks = (False, False, False, False, False, False, False, [...], False, False, False, False, False, False, False)<BR/>MaxScatterSeeding = 0.1<BR/>MaxScatterForwarding = 0.1<BR/>MaxScatter3hits = 0.02<BR/>SkipForward = 1>, shape=plaintext];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_in_RawBanks" [fillcolor=deepskyblue1, label=RawBanks, style=filled];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651" -> "VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_in_RawBanks"  [minlen=0, style=invis];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksLocation" [fillcolor=coral1, label=TracksLocation, style=filled];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651" -> "VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksLocation"  [minlen=0, style=invis];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksBackwardLocation" [fillcolor=coral1, label=TracksBackwardLocation, style=filled];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651" -> "VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksBackwardLocation"  [minlen=0, style=invis];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_HitsLocation" [fillcolor=coral1, label=HitsLocation, style=filled];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651" -> "VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_HitsLocation"  [minlen=0, style=invis];
}

"LHCb::UnpackRawEvent/UnpackRawEvent_VP_out_RawBankLocations" -> "VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_in_RawBanks";
subgraph "cluster_LHCb::UnpackRawEvent/UnpackRawEvent_VP" {
bgcolor=aliceblue;
label="";
"LHCb::UnpackRawEvent/UnpackRawEvent_VP" [label=<<B>LHCb::UnpackRawEvent/UnpackRawEvent_VP</B><BR/>BankTypes = [&#x27;VP&#x27;]<BR/>RawBankLocations = /Event/RawBanks/VP>, shape=plaintext];
"LHCb::UnpackRawEvent/UnpackRawEvent_VP_in_RawEventLocation" [fillcolor=deepskyblue1, label=RawEventLocation, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_VP" -> "LHCb::UnpackRawEvent/UnpackRawEvent_VP_in_RawEventLocation"  [minlen=0, style=invis];
"LHCb::UnpackRawEvent/UnpackRawEvent_VP_out_RawBankLocations" [fillcolor=coral1, label=RawBankLocations, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_VP" -> "LHCb::UnpackRawEvent/UnpackRawEvent_VP_out_RawBankLocations"  [minlen=0, style=invis];
}

"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" -> "LHCb::UnpackRawEvent/UnpackRawEvent_VP_in_RawEventLocation";
subgraph "cluster_Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent" {
bgcolor=aliceblue;
label="";
"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent" [label=<<B>Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent</B><BR/>Output = /Event/DAQ/RawEvent>, shape=plaintext];
"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" [fillcolor=coral1, label=Output, style=filled];
"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent" -> "Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output"  [minlen=0, style=invis];
}

"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksLocation" -> "VeloKalman/VeloKalman_bf73c006_in_TracksVPLocation";
"SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1_out_Output" -> "VeloKalman/VeloKalman_bf73c006_in_TracksFTLocation";
subgraph "cluster_SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1" {
bgcolor=aliceblue;
label="";
"SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1" [label=<<B>SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1</B><BR/>defaults-only>, shape=plaintext];
"SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1_in_HitsLocation" [fillcolor=deepskyblue1, label=HitsLocation, style=filled];
"SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1" -> "SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1_in_HitsLocation"  [minlen=0, style=invis];
"SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1_in_InputTracks" [fillcolor=deepskyblue1, label=InputTracks, style=filled];
"SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1" -> "SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1_in_InputTracks"  [minlen=0, style=invis];
"SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1_out_Output" [fillcolor=coral1, label=Output, style=filled];
"SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1" -> "SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1_out_Output"  [minlen=0, style=invis];
}

"SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19_out_Output" -> "SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1_in_HitsLocation";
subgraph "cluster_SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19" {
bgcolor=aliceblue;
label="";
"SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19" [label=<<B>SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19</B><BR/>defaults-only>, shape=plaintext];
"SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19_in_HitsLocation" [fillcolor=deepskyblue1, label=HitsLocation, style=filled];
"SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19" -> "SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19_in_HitsLocation"  [minlen=0, style=invis];
"SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19_out_Output" [fillcolor=coral1, label=Output, style=filled];
"SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19" -> "SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19_out_Output"  [minlen=0, style=invis];
}

"FTRawBankDecoder/FTRawBankDecoder_out_OutputLocation" -> "SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19_in_HitsLocation";
subgraph "cluster_FTRawBankDecoder/FTRawBankDecoder" {
bgcolor=aliceblue;
label="";
"FTRawBankDecoder/FTRawBankDecoder" [label=<<B>FTRawBankDecoder/FTRawBankDecoder</B><BR/>defaults-only>, shape=plaintext];
"FTRawBankDecoder/FTRawBankDecoder_in_Odin" [fillcolor=deepskyblue1, label=Odin, style=filled];
"FTRawBankDecoder/FTRawBankDecoder" -> "FTRawBankDecoder/FTRawBankDecoder_in_Odin"  [minlen=0, style=invis];
"FTRawBankDecoder/FTRawBankDecoder_in_RawBanks" [fillcolor=deepskyblue1, label=RawBanks, style=filled];
"FTRawBankDecoder/FTRawBankDecoder" -> "FTRawBankDecoder/FTRawBankDecoder_in_RawBanks"  [minlen=0, style=invis];
"FTRawBankDecoder/FTRawBankDecoder_out_OutputLocation" [fillcolor=coral1, label=OutputLocation, style=filled];
"FTRawBankDecoder/FTRawBankDecoder" -> "FTRawBankDecoder/FTRawBankDecoder_out_OutputLocation"  [minlen=0, style=invis];
}

"createODIN/Decode_ODIN_out_ODIN" -> "FTRawBankDecoder/FTRawBankDecoder_in_Odin";
subgraph "cluster_createODIN/Decode_ODIN" {
bgcolor=aliceblue;
label="";
"createODIN/Decode_ODIN" [label=<<B>createODIN/Decode_ODIN</B><BR/>defaults-only>, shape=plaintext];
"createODIN/Decode_ODIN_in_RawBanks" [fillcolor=deepskyblue1, label=RawBanks, style=filled];
"createODIN/Decode_ODIN" -> "createODIN/Decode_ODIN_in_RawBanks"  [minlen=0, style=invis];
"createODIN/Decode_ODIN_out_ODIN" [fillcolor=coral1, label=ODIN, style=filled];
"createODIN/Decode_ODIN" -> "createODIN/Decode_ODIN_out_ODIN"  [minlen=0, style=invis];
}

"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_out_RawBankLocations" -> "createODIN/Decode_ODIN_in_RawBanks";
subgraph "cluster_LHCb::UnpackRawEvent/UnpackRawEvent_ODIN" {
bgcolor=aliceblue;
label="";
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN" [label=<<B>LHCb::UnpackRawEvent/UnpackRawEvent_ODIN</B><BR/>BankTypes = [&#x27;ODIN&#x27;]<BR/>RawBankLocations = /Event/RawBanks/ODIN>, shape=plaintext];
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_in_RawEventLocation" [fillcolor=deepskyblue1, label=RawEventLocation, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN" -> "LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_in_RawEventLocation"  [minlen=0, style=invis];
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_out_RawBankLocations" [fillcolor=coral1, label=RawBankLocations, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN" -> "LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_out_RawBankLocations"  [minlen=0, style=invis];
}

"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" -> "LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_in_RawEventLocation";
"LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster_out_RawBankLocations" -> "FTRawBankDecoder/FTRawBankDecoder_in_RawBanks";
subgraph "cluster_LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster" {
bgcolor=aliceblue;
label="";
"LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster" [label=<<B>LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster</B><BR/>BankTypes = [&#x27;FTCluster&#x27;]<BR/>RawBankLocations = /Event/RawBanks/FTCluster>, shape=plaintext];
"LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster_in_RawEventLocation" [fillcolor=deepskyblue1, label=RawEventLocation, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster" -> "LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster_in_RawEventLocation"  [minlen=0, style=invis];
"LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster_out_RawBankLocations" [fillcolor=coral1, label=RawBankLocations, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster" -> "LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster_out_RawBankLocations"  [minlen=0, style=invis];
}

"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" -> "LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster_in_RawEventLocation";
"PrVeloUT/PrVeloUT_4eab5c1b_out_OutputTracksName" -> "SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1_in_InputTracks";
subgraph "cluster_PrVeloUT/PrVeloUT_4eab5c1b" {
bgcolor=aliceblue;
label="";
"PrVeloUT/PrVeloUT_4eab5c1b" [label=<<B>PrVeloUT/PrVeloUT_4eab5c1b</B><BR/>defaults-only>, shape=plaintext];
"PrVeloUT/PrVeloUT_4eab5c1b_in_InputTracksName" [fillcolor=deepskyblue1, label=InputTracksName, style=filled];
"PrVeloUT/PrVeloUT_4eab5c1b" -> "PrVeloUT/PrVeloUT_4eab5c1b_in_InputTracksName"  [minlen=0, style=invis];
"PrVeloUT/PrVeloUT_4eab5c1b_in_UTHits" [fillcolor=deepskyblue1, label=UTHits, style=filled];
"PrVeloUT/PrVeloUT_4eab5c1b" -> "PrVeloUT/PrVeloUT_4eab5c1b_in_UTHits"  [minlen=0, style=invis];
"PrVeloUT/PrVeloUT_4eab5c1b_out_OutputTracksName" [fillcolor=coral1, label=OutputTracksName, style=filled];
"PrVeloUT/PrVeloUT_4eab5c1b" -> "PrVeloUT/PrVeloUT_4eab5c1b_out_OutputTracksName"  [minlen=0, style=invis];
}

"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksLocation" -> "PrVeloUT/PrVeloUT_4eab5c1b_in_InputTracksName";
"PrStorePrUTHits/PrStorePrUTHits_df75b912_out_UTHitsLocation" -> "PrVeloUT/PrVeloUT_4eab5c1b_in_UTHits";
subgraph "cluster_PrStorePrUTHits/PrStorePrUTHits_df75b912" {
bgcolor=aliceblue;
label="";
"PrStorePrUTHits/PrStorePrUTHits_df75b912" [label=<<B>PrStorePrUTHits/PrStorePrUTHits_df75b912</B><BR/>isCluster = True<BR/>positionMethod = GeoWeighting>, shape=plaintext];
"PrStorePrUTHits/PrStorePrUTHits_df75b912_in_RawBanks" [fillcolor=deepskyblue1, label=RawBanks, style=filled];
"PrStorePrUTHits/PrStorePrUTHits_df75b912" -> "PrStorePrUTHits/PrStorePrUTHits_df75b912_in_RawBanks"  [minlen=0, style=invis];
"PrStorePrUTHits/PrStorePrUTHits_df75b912_out_UTHitsLocation" [fillcolor=coral1, label=UTHitsLocation, style=filled];
"PrStorePrUTHits/PrStorePrUTHits_df75b912" -> "PrStorePrUTHits/PrStorePrUTHits_df75b912_out_UTHitsLocation"  [minlen=0, style=invis];
}

"LHCb::UnpackRawEvent/UnpackRawEvent_UT_out_RawBankLocations" -> "PrStorePrUTHits/PrStorePrUTHits_df75b912_in_RawBanks";
subgraph "cluster_LHCb::UnpackRawEvent/UnpackRawEvent_UT" {
bgcolor=aliceblue;
label="";
"LHCb::UnpackRawEvent/UnpackRawEvent_UT" [label=<<B>LHCb::UnpackRawEvent/UnpackRawEvent_UT</B><BR/>BankTypes = [&#x27;UT&#x27;]<BR/>RawBankLocations = /Event/RawBanks/UT>, shape=plaintext];
"LHCb::UnpackRawEvent/UnpackRawEvent_UT_in_RawEventLocation" [fillcolor=deepskyblue1, label=RawEventLocation, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_UT" -> "LHCb::UnpackRawEvent/UnpackRawEvent_UT_in_RawEventLocation"  [minlen=0, style=invis];
"LHCb::UnpackRawEvent/UnpackRawEvent_UT_out_RawBankLocations" [fillcolor=coral1, label=RawBankLocations, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_UT" -> "LHCb::UnpackRawEvent/UnpackRawEvent_UT_out_RawBankLocations"  [minlen=0, style=invis];
}

"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" -> "LHCb::UnpackRawEvent/UnpackRawEvent_UT_in_RawEventLocation";
"UniqueIDGeneratorAlg/UniqueIDGeneratorAlg_26e527e9_out_Output" -> "VeloKalman/VeloKalman_bf73c006_in_UniqueIDGenerator";
"MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4_out_OutputMuonPID" -> "MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89_in_Input2";
subgraph "cluster_MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4" {
bgcolor=aliceblue;
label="";
"MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4" [label=<<B>MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4</B><BR/>runMVA = False>, shape=plaintext];
"MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4_in_InputTracks" [fillcolor=deepskyblue1, label=InputTracks, style=filled];
"MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4" -> "MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4_in_InputTracks"  [minlen=0, style=invis];
"MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4_in_InputMuonHits" [fillcolor=deepskyblue1, label=InputMuonHits, style=filled];
"MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4" -> "MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4_in_InputMuonHits"  [minlen=0, style=invis];
"MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4_out_OutputMuonPID" [fillcolor=coral1, label=OutputMuonPID, style=filled];
"MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4" -> "MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4_out_OutputMuonPID"  [minlen=0, style=invis];
}

"SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1_out_Output" -> "MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4_in_InputTracks";
"MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab_out_HitContainer" -> "MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4_in_InputMuonHits";
subgraph "cluster_MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab" {
bgcolor=aliceblue;
label="";
"MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab" [label=<<B>MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab</B><BR/>defaults-only>, shape=plaintext];
"MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab_in_RawBanks" [fillcolor=deepskyblue1, label=RawBanks, style=filled];
"MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab" -> "MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab_in_RawBanks"  [minlen=0, style=invis];
"MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab_in_ErrorRawBanks" [fillcolor=deepskyblue1, label=ErrorRawBanks, style=filled];
"MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab" -> "MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab_in_ErrorRawBanks"  [minlen=0, style=invis];
"MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab_out_HitContainer" [fillcolor=coral1, label=HitContainer, style=filled];
"MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab" -> "MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab_out_HitContainer"  [minlen=0, style=invis];
}

"LHCb::UnpackRawEvent/UnpackRawEvent_Muon_out_RawBankLocations" -> "MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab_in_RawBanks";
subgraph "cluster_LHCb::UnpackRawEvent/UnpackRawEvent_Muon" {
bgcolor=aliceblue;
label="";
"LHCb::UnpackRawEvent/UnpackRawEvent_Muon" [label=<<B>LHCb::UnpackRawEvent/UnpackRawEvent_Muon</B><BR/>BankTypes = [&#x27;Muon&#x27;]<BR/>RawBankLocations = /Event/RawBanks/Muon>, shape=plaintext];
"LHCb::UnpackRawEvent/UnpackRawEvent_Muon_in_RawEventLocation" [fillcolor=deepskyblue1, label=RawEventLocation, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_Muon" -> "LHCb::UnpackRawEvent/UnpackRawEvent_Muon_in_RawEventLocation"  [minlen=0, style=invis];
"LHCb::UnpackRawEvent/UnpackRawEvent_Muon_out_RawBankLocations" [fillcolor=coral1, label=RawBankLocations, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_Muon" -> "LHCb::UnpackRawEvent/UnpackRawEvent_Muon_out_RawBankLocations"  [minlen=0, style=invis];
}

"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" -> "LHCb::UnpackRawEvent/UnpackRawEvent_Muon_in_RawEventLocation";
"LHCb::UnpackRawEvent/UnpackRawEvent_MuonError_out_RawBankLocations" -> "MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab_in_ErrorRawBanks";
subgraph "cluster_LHCb::UnpackRawEvent/UnpackRawEvent_MuonError" {
bgcolor=aliceblue;
label="";
"LHCb::UnpackRawEvent/UnpackRawEvent_MuonError" [label=<<B>LHCb::UnpackRawEvent/UnpackRawEvent_MuonError</B><BR/>BankTypes = [&#x27;MuonError&#x27;]<BR/>RawBankLocations = /Event/RawBanks/MuonError>, shape=plaintext];
"LHCb::UnpackRawEvent/UnpackRawEvent_MuonError_in_RawEventLocation" [fillcolor=deepskyblue1, label=RawEventLocation, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_MuonError" -> "LHCb::UnpackRawEvent/UnpackRawEvent_MuonError_in_RawEventLocation"  [minlen=0, style=invis];
"LHCb::UnpackRawEvent/UnpackRawEvent_MuonError_out_RawBankLocations" [fillcolor=coral1, label=RawBankLocations, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_MuonError" -> "LHCb::UnpackRawEvent/UnpackRawEvent_MuonError_out_RawBankLocations"  [minlen=0, style=invis];
}

"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" -> "LHCb::UnpackRawEvent/UnpackRawEvent_MuonError_in_RawEventLocation";
subgraph "cluster_LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex_5d9c3a9d" {
bgcolor=aliceblue;
label="";
"LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex_5d9c3a9d" [label=<<B>LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex_5d9c3a9d</B><BR/>defaults-only>, shape=plaintext];
"LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex_5d9c3a9d_in_TracksInVertices" [fillcolor=deepskyblue1, label=TracksInVertices, style=filled];
"LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex_5d9c3a9d" -> "LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex_5d9c3a9d_in_TracksInVertices"  [minlen=0, style=invis];
"LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex_5d9c3a9d_in_ConvertedTracks" [fillcolor=deepskyblue1, label=ConvertedTracks, style=filled];
"LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex_5d9c3a9d" -> "LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex_5d9c3a9d_in_ConvertedTracks"  [minlen=0, style=invis];
"LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex_5d9c3a9d_in_InputComposites" [fillcolor=deepskyblue1, label=InputComposites, style=filled];
"LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex_5d9c3a9d" -> "LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex_5d9c3a9d_in_InputComposites"  [minlen=0, style=invis];
"LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex_5d9c3a9d_out_OutputVertices" [fillcolor=coral1, label=OutputVertices, style=filled];
"LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex_5d9c3a9d" -> "LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex_5d9c3a9d_out_OutputVertices"  [minlen=0, style=invis];
}

"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1d9541b1_out_Output" -> "LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex_5d9c3a9d_in_TracksInVertices";
subgraph "cluster_PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1d9541b1" {
bgcolor=aliceblue;
label="";
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1d9541b1" [label=<<B>PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1d9541b1</B><BR/>Cut = FILTER(Functor=( ISMUON &amp; ( ( MAGNITUDE @ THREEMOM[...] ( ( VALUE_OR(Value=nan) @ _CHI2DOF ) &lt; 100.0 ) ))>, shape=plaintext];
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1d9541b1_in_Input" [fillcolor=deepskyblue1, label=Input, style=filled];
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1d9541b1" -> "PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1d9541b1_in_Input"  [minlen=0, style=invis];
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1d9541b1_in_Cut_PyConfDataDependencies" [fillcolor=deepskyblue1, label=Cut_PyConfDataDependencies, style=filled];
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1d9541b1" -> "PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1d9541b1_in_Cut_PyConfDataDependencies"  [minlen=0, style=invis];
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1d9541b1_out_OutputStorage" [fillcolor=coral1, label=OutputStorage, style=filled];
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1d9541b1" -> "PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1d9541b1_out_OutputStorage"  [minlen=0, style=invis];
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1d9541b1_out_Output" [fillcolor=coral1, label=Output, style=filled];
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1d9541b1" -> "PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1d9541b1_out_Output"  [minlen=0, style=invis];
}

"MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89_out_Output" -> "PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1d9541b1_in_Input";
subgraph "cluster_MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89" {
bgcolor=aliceblue;
label="";
"MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89" [label=<<B>MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89</B><BR/>defaults-only>, shape=plaintext];
"MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89_in_Input1" [fillcolor=deepskyblue1, label=Input1, style=filled];
"MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89" -> "MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89_in_Input1"  [minlen=0, style=invis];
"MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89_in_Input2" [fillcolor=deepskyblue1, label=Input2, style=filled];
"MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89" -> "MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89_in_Input2"  [minlen=0, style=invis];
"MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89_out_Output" [fillcolor=coral1, label=Output, style=filled];
"MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89" -> "MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89_out_Output"  [minlen=0, style=invis];
}

"VeloKalman/VeloKalman_bf73c006_out_OutputTracksLocation" -> "MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89_in_Input1";
subgraph "cluster_VeloKalman/VeloKalman_bf73c006" {
bgcolor=aliceblue;
label="";
"VeloKalman/VeloKalman_bf73c006" [label=<<B>VeloKalman/VeloKalman_bf73c006</B><BR/>defaults-only>, shape=plaintext];
"VeloKalman/VeloKalman_bf73c006_in_HitsLocation" [fillcolor=deepskyblue1, label=HitsLocation, style=filled];
"VeloKalman/VeloKalman_bf73c006" -> "VeloKalman/VeloKalman_bf73c006_in_HitsLocation"  [minlen=0, style=invis];
"VeloKalman/VeloKalman_bf73c006_in_TracksVPLocation" [fillcolor=deepskyblue1, label=TracksVPLocation, style=filled];
"VeloKalman/VeloKalman_bf73c006" -> "VeloKalman/VeloKalman_bf73c006_in_TracksVPLocation"  [minlen=0, style=invis];
"VeloKalman/VeloKalman_bf73c006_in_TracksFTLocation" [fillcolor=deepskyblue1, label=TracksFTLocation, style=filled];
"VeloKalman/VeloKalman_bf73c006" -> "VeloKalman/VeloKalman_bf73c006_in_TracksFTLocation"  [minlen=0, style=invis];
"VeloKalman/VeloKalman_bf73c006_in_UniqueIDGenerator" [fillcolor=deepskyblue1, label=UniqueIDGenerator, style=filled];
"VeloKalman/VeloKalman_bf73c006" -> "VeloKalman/VeloKalman_bf73c006_in_UniqueIDGenerator"  [minlen=0, style=invis];
"VeloKalman/VeloKalman_bf73c006_out_OutputTracksLocation" [fillcolor=coral1, label=OutputTracksLocation, style=filled];
"VeloKalman/VeloKalman_bf73c006" -> "VeloKalman/VeloKalman_bf73c006_out_OutputTracksLocation"  [minlen=0, style=invis];
}

"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_HitsLocation" -> "VeloKalman/VeloKalman_bf73c006_in_HitsLocation";
subgraph "cluster_VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651" {
bgcolor=aliceblue;
label="";
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651" [label=<<B>VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651</B><BR/>SensorMasks = (False, False, False, False, False, False, False, [...], False, False, False, False, False, False, False)<BR/>MaxScatterSeeding = 0.1<BR/>MaxScatterForwarding = 0.1<BR/>MaxScatter3hits = 0.02<BR/>SkipForward = 1>, shape=plaintext];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_in_RawBanks" [fillcolor=deepskyblue1, label=RawBanks, style=filled];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651" -> "VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_in_RawBanks"  [minlen=0, style=invis];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksLocation" [fillcolor=coral1, label=TracksLocation, style=filled];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651" -> "VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksLocation"  [minlen=0, style=invis];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksBackwardLocation" [fillcolor=coral1, label=TracksBackwardLocation, style=filled];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651" -> "VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksBackwardLocation"  [minlen=0, style=invis];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_HitsLocation" [fillcolor=coral1, label=HitsLocation, style=filled];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651" -> "VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_HitsLocation"  [minlen=0, style=invis];
}

"LHCb::UnpackRawEvent/UnpackRawEvent_VP_out_RawBankLocations" -> "VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_in_RawBanks";
subgraph "cluster_LHCb::UnpackRawEvent/UnpackRawEvent_VP" {
bgcolor=aliceblue;
label="";
"LHCb::UnpackRawEvent/UnpackRawEvent_VP" [label=<<B>LHCb::UnpackRawEvent/UnpackRawEvent_VP</B><BR/>BankTypes = [&#x27;VP&#x27;]<BR/>RawBankLocations = /Event/RawBanks/VP>, shape=plaintext];
"LHCb::UnpackRawEvent/UnpackRawEvent_VP_in_RawEventLocation" [fillcolor=deepskyblue1, label=RawEventLocation, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_VP" -> "LHCb::UnpackRawEvent/UnpackRawEvent_VP_in_RawEventLocation"  [minlen=0, style=invis];
"LHCb::UnpackRawEvent/UnpackRawEvent_VP_out_RawBankLocations" [fillcolor=coral1, label=RawBankLocations, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_VP" -> "LHCb::UnpackRawEvent/UnpackRawEvent_VP_out_RawBankLocations"  [minlen=0, style=invis];
}

"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" -> "LHCb::UnpackRawEvent/UnpackRawEvent_VP_in_RawEventLocation";
subgraph "cluster_Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent" {
bgcolor=aliceblue;
label="";
"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent" [label=<<B>Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent</B><BR/>Output = /Event/DAQ/RawEvent>, shape=plaintext];
"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" [fillcolor=coral1, label=Output, style=filled];
"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent" -> "Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output"  [minlen=0, style=invis];
}

"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksLocation" -> "VeloKalman/VeloKalman_bf73c006_in_TracksVPLocation";
"SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1_out_Output" -> "VeloKalman/VeloKalman_bf73c006_in_TracksFTLocation";
subgraph "cluster_SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1" {
bgcolor=aliceblue;
label="";
"SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1" [label=<<B>SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1</B><BR/>defaults-only>, shape=plaintext];
"SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1_in_HitsLocation" [fillcolor=deepskyblue1, label=HitsLocation, style=filled];
"SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1" -> "SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1_in_HitsLocation"  [minlen=0, style=invis];
"SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1_in_InputTracks" [fillcolor=deepskyblue1, label=InputTracks, style=filled];
"SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1" -> "SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1_in_InputTracks"  [minlen=0, style=invis];
"SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1_out_Output" [fillcolor=coral1, label=Output, style=filled];
"SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1" -> "SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1_out_Output"  [minlen=0, style=invis];
}

"SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19_out_Output" -> "SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1_in_HitsLocation";
subgraph "cluster_SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19" {
bgcolor=aliceblue;
label="";
"SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19" [label=<<B>SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19</B><BR/>defaults-only>, shape=plaintext];
"SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19_in_HitsLocation" [fillcolor=deepskyblue1, label=HitsLocation, style=filled];
"SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19" -> "SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19_in_HitsLocation"  [minlen=0, style=invis];
"SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19_out_Output" [fillcolor=coral1, label=Output, style=filled];
"SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19" -> "SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19_out_Output"  [minlen=0, style=invis];
}

"FTRawBankDecoder/FTRawBankDecoder_out_OutputLocation" -> "SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19_in_HitsLocation";
subgraph "cluster_FTRawBankDecoder/FTRawBankDecoder" {
bgcolor=aliceblue;
label="";
"FTRawBankDecoder/FTRawBankDecoder" [label=<<B>FTRawBankDecoder/FTRawBankDecoder</B><BR/>defaults-only>, shape=plaintext];
"FTRawBankDecoder/FTRawBankDecoder_in_Odin" [fillcolor=deepskyblue1, label=Odin, style=filled];
"FTRawBankDecoder/FTRawBankDecoder" -> "FTRawBankDecoder/FTRawBankDecoder_in_Odin"  [minlen=0, style=invis];
"FTRawBankDecoder/FTRawBankDecoder_in_RawBanks" [fillcolor=deepskyblue1, label=RawBanks, style=filled];
"FTRawBankDecoder/FTRawBankDecoder" -> "FTRawBankDecoder/FTRawBankDecoder_in_RawBanks"  [minlen=0, style=invis];
"FTRawBankDecoder/FTRawBankDecoder_out_OutputLocation" [fillcolor=coral1, label=OutputLocation, style=filled];
"FTRawBankDecoder/FTRawBankDecoder" -> "FTRawBankDecoder/FTRawBankDecoder_out_OutputLocation"  [minlen=0, style=invis];
}

"createODIN/Decode_ODIN_out_ODIN" -> "FTRawBankDecoder/FTRawBankDecoder_in_Odin";
subgraph "cluster_createODIN/Decode_ODIN" {
bgcolor=aliceblue;
label="";
"createODIN/Decode_ODIN" [label=<<B>createODIN/Decode_ODIN</B><BR/>defaults-only>, shape=plaintext];
"createODIN/Decode_ODIN_in_RawBanks" [fillcolor=deepskyblue1, label=RawBanks, style=filled];
"createODIN/Decode_ODIN" -> "createODIN/Decode_ODIN_in_RawBanks"  [minlen=0, style=invis];
"createODIN/Decode_ODIN_out_ODIN" [fillcolor=coral1, label=ODIN, style=filled];
"createODIN/Decode_ODIN" -> "createODIN/Decode_ODIN_out_ODIN"  [minlen=0, style=invis];
}

"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_out_RawBankLocations" -> "createODIN/Decode_ODIN_in_RawBanks";
subgraph "cluster_LHCb::UnpackRawEvent/UnpackRawEvent_ODIN" {
bgcolor=aliceblue;
label="";
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN" [label=<<B>LHCb::UnpackRawEvent/UnpackRawEvent_ODIN</B><BR/>BankTypes = [&#x27;ODIN&#x27;]<BR/>RawBankLocations = /Event/RawBanks/ODIN>, shape=plaintext];
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_in_RawEventLocation" [fillcolor=deepskyblue1, label=RawEventLocation, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN" -> "LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_in_RawEventLocation"  [minlen=0, style=invis];
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_out_RawBankLocations" [fillcolor=coral1, label=RawBankLocations, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN" -> "LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_out_RawBankLocations"  [minlen=0, style=invis];
}

"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" -> "LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_in_RawEventLocation";
"LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster_out_RawBankLocations" -> "FTRawBankDecoder/FTRawBankDecoder_in_RawBanks";
subgraph "cluster_LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster" {
bgcolor=aliceblue;
label="";
"LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster" [label=<<B>LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster</B><BR/>BankTypes = [&#x27;FTCluster&#x27;]<BR/>RawBankLocations = /Event/RawBanks/FTCluster>, shape=plaintext];
"LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster_in_RawEventLocation" [fillcolor=deepskyblue1, label=RawEventLocation, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster" -> "LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster_in_RawEventLocation"  [minlen=0, style=invis];
"LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster_out_RawBankLocations" [fillcolor=coral1, label=RawBankLocations, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster" -> "LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster_out_RawBankLocations"  [minlen=0, style=invis];
}

"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" -> "LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster_in_RawEventLocation";
"PrVeloUT/PrVeloUT_4eab5c1b_out_OutputTracksName" -> "SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1_in_InputTracks";
subgraph "cluster_PrVeloUT/PrVeloUT_4eab5c1b" {
bgcolor=aliceblue;
label="";
"PrVeloUT/PrVeloUT_4eab5c1b" [label=<<B>PrVeloUT/PrVeloUT_4eab5c1b</B><BR/>defaults-only>, shape=plaintext];
"PrVeloUT/PrVeloUT_4eab5c1b_in_InputTracksName" [fillcolor=deepskyblue1, label=InputTracksName, style=filled];
"PrVeloUT/PrVeloUT_4eab5c1b" -> "PrVeloUT/PrVeloUT_4eab5c1b_in_InputTracksName"  [minlen=0, style=invis];
"PrVeloUT/PrVeloUT_4eab5c1b_in_UTHits" [fillcolor=deepskyblue1, label=UTHits, style=filled];
"PrVeloUT/PrVeloUT_4eab5c1b" -> "PrVeloUT/PrVeloUT_4eab5c1b_in_UTHits"  [minlen=0, style=invis];
"PrVeloUT/PrVeloUT_4eab5c1b_out_OutputTracksName" [fillcolor=coral1, label=OutputTracksName, style=filled];
"PrVeloUT/PrVeloUT_4eab5c1b" -> "PrVeloUT/PrVeloUT_4eab5c1b_out_OutputTracksName"  [minlen=0, style=invis];
}

"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksLocation" -> "PrVeloUT/PrVeloUT_4eab5c1b_in_InputTracksName";
"PrStorePrUTHits/PrStorePrUTHits_df75b912_out_UTHitsLocation" -> "PrVeloUT/PrVeloUT_4eab5c1b_in_UTHits";
subgraph "cluster_PrStorePrUTHits/PrStorePrUTHits_df75b912" {
bgcolor=aliceblue;
label="";
"PrStorePrUTHits/PrStorePrUTHits_df75b912" [label=<<B>PrStorePrUTHits/PrStorePrUTHits_df75b912</B><BR/>isCluster = True<BR/>positionMethod = GeoWeighting>, shape=plaintext];
"PrStorePrUTHits/PrStorePrUTHits_df75b912_in_RawBanks" [fillcolor=deepskyblue1, label=RawBanks, style=filled];
"PrStorePrUTHits/PrStorePrUTHits_df75b912" -> "PrStorePrUTHits/PrStorePrUTHits_df75b912_in_RawBanks"  [minlen=0, style=invis];
"PrStorePrUTHits/PrStorePrUTHits_df75b912_out_UTHitsLocation" [fillcolor=coral1, label=UTHitsLocation, style=filled];
"PrStorePrUTHits/PrStorePrUTHits_df75b912" -> "PrStorePrUTHits/PrStorePrUTHits_df75b912_out_UTHitsLocation"  [minlen=0, style=invis];
}

"LHCb::UnpackRawEvent/UnpackRawEvent_UT_out_RawBankLocations" -> "PrStorePrUTHits/PrStorePrUTHits_df75b912_in_RawBanks";
subgraph "cluster_LHCb::UnpackRawEvent/UnpackRawEvent_UT" {
bgcolor=aliceblue;
label="";
"LHCb::UnpackRawEvent/UnpackRawEvent_UT" [label=<<B>LHCb::UnpackRawEvent/UnpackRawEvent_UT</B><BR/>BankTypes = [&#x27;UT&#x27;]<BR/>RawBankLocations = /Event/RawBanks/UT>, shape=plaintext];
"LHCb::UnpackRawEvent/UnpackRawEvent_UT_in_RawEventLocation" [fillcolor=deepskyblue1, label=RawEventLocation, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_UT" -> "LHCb::UnpackRawEvent/UnpackRawEvent_UT_in_RawEventLocation"  [minlen=0, style=invis];
"LHCb::UnpackRawEvent/UnpackRawEvent_UT_out_RawBankLocations" [fillcolor=coral1, label=RawBankLocations, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_UT" -> "LHCb::UnpackRawEvent/UnpackRawEvent_UT_out_RawBankLocations"  [minlen=0, style=invis];
}

"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" -> "LHCb::UnpackRawEvent/UnpackRawEvent_UT_in_RawEventLocation";
"UniqueIDGeneratorAlg/UniqueIDGeneratorAlg_26e527e9_out_Output" -> "VeloKalman/VeloKalman_bf73c006_in_UniqueIDGenerator";
subgraph "cluster_UniqueIDGeneratorAlg/UniqueIDGeneratorAlg_26e527e9" {
bgcolor=aliceblue;
label="";
"UniqueIDGeneratorAlg/UniqueIDGeneratorAlg_26e527e9" [label=<<B>UniqueIDGeneratorAlg/UniqueIDGeneratorAlg_26e527e9</B><BR/>defaults-only>, shape=plaintext];
"UniqueIDGeneratorAlg/UniqueIDGeneratorAlg_26e527e9_out_Output" [fillcolor=coral1, label=Output, style=filled];
"UniqueIDGeneratorAlg/UniqueIDGeneratorAlg_26e527e9" -> "UniqueIDGeneratorAlg/UniqueIDGeneratorAlg_26e527e9_out_Output"  [minlen=0, style=invis];
}

"MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4_out_OutputMuonPID" -> "MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89_in_Input2";
subgraph "cluster_MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4" {
bgcolor=aliceblue;
label="";
"MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4" [label=<<B>MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4</B><BR/>runMVA = False>, shape=plaintext];
"MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4_in_InputTracks" [fillcolor=deepskyblue1, label=InputTracks, style=filled];
"MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4" -> "MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4_in_InputTracks"  [minlen=0, style=invis];
"MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4_in_InputMuonHits" [fillcolor=deepskyblue1, label=InputMuonHits, style=filled];
"MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4" -> "MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4_in_InputMuonHits"  [minlen=0, style=invis];
"MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4_out_OutputMuonPID" [fillcolor=coral1, label=OutputMuonPID, style=filled];
"MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4" -> "MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4_out_OutputMuonPID"  [minlen=0, style=invis];
}

"SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1_out_Output" -> "MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4_in_InputTracks";
"MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab_out_HitContainer" -> "MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4_in_InputMuonHits";
subgraph "cluster_MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab" {
bgcolor=aliceblue;
label="";
"MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab" [label=<<B>MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab</B><BR/>defaults-only>, shape=plaintext];
"MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab_in_RawBanks" [fillcolor=deepskyblue1, label=RawBanks, style=filled];
"MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab" -> "MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab_in_RawBanks"  [minlen=0, style=invis];
"MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab_in_ErrorRawBanks" [fillcolor=deepskyblue1, label=ErrorRawBanks, style=filled];
"MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab" -> "MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab_in_ErrorRawBanks"  [minlen=0, style=invis];
"MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab_out_HitContainer" [fillcolor=coral1, label=HitContainer, style=filled];
"MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab" -> "MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab_out_HitContainer"  [minlen=0, style=invis];
}

"LHCb::UnpackRawEvent/UnpackRawEvent_Muon_out_RawBankLocations" -> "MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab_in_RawBanks";
subgraph "cluster_LHCb::UnpackRawEvent/UnpackRawEvent_Muon" {
bgcolor=aliceblue;
label="";
"LHCb::UnpackRawEvent/UnpackRawEvent_Muon" [label=<<B>LHCb::UnpackRawEvent/UnpackRawEvent_Muon</B><BR/>BankTypes = [&#x27;Muon&#x27;]<BR/>RawBankLocations = /Event/RawBanks/Muon>, shape=plaintext];
"LHCb::UnpackRawEvent/UnpackRawEvent_Muon_in_RawEventLocation" [fillcolor=deepskyblue1, label=RawEventLocation, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_Muon" -> "LHCb::UnpackRawEvent/UnpackRawEvent_Muon_in_RawEventLocation"  [minlen=0, style=invis];
"LHCb::UnpackRawEvent/UnpackRawEvent_Muon_out_RawBankLocations" [fillcolor=coral1, label=RawBankLocations, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_Muon" -> "LHCb::UnpackRawEvent/UnpackRawEvent_Muon_out_RawBankLocations"  [minlen=0, style=invis];
}

"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" -> "LHCb::UnpackRawEvent/UnpackRawEvent_Muon_in_RawEventLocation";
"LHCb::UnpackRawEvent/UnpackRawEvent_MuonError_out_RawBankLocations" -> "MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab_in_ErrorRawBanks";
subgraph "cluster_LHCb::UnpackRawEvent/UnpackRawEvent_MuonError" {
bgcolor=aliceblue;
label="";
"LHCb::UnpackRawEvent/UnpackRawEvent_MuonError" [label=<<B>LHCb::UnpackRawEvent/UnpackRawEvent_MuonError</B><BR/>BankTypes = [&#x27;MuonError&#x27;]<BR/>RawBankLocations = /Event/RawBanks/MuonError>, shape=plaintext];
"LHCb::UnpackRawEvent/UnpackRawEvent_MuonError_in_RawEventLocation" [fillcolor=deepskyblue1, label=RawEventLocation, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_MuonError" -> "LHCb::UnpackRawEvent/UnpackRawEvent_MuonError_in_RawEventLocation"  [minlen=0, style=invis];
"LHCb::UnpackRawEvent/UnpackRawEvent_MuonError_out_RawBankLocations" [fillcolor=coral1, label=RawBankLocations, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_MuonError" -> "LHCb::UnpackRawEvent/UnpackRawEvent_MuonError_out_RawBankLocations"  [minlen=0, style=invis];
}

"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" -> "LHCb::UnpackRawEvent/UnpackRawEvent_MuonError_in_RawEventLocation";
"fromV3TrackWithMuonIDV1TrackVector/fromV3TrackWithMuonIDV1TrackVector_ff6b6a59_out_OutputTracks" -> "LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex_5d9c3a9d_in_ConvertedTracks";
subgraph "cluster_fromV3TrackWithMuonIDV1TrackVector/fromV3TrackWithMuonIDV1TrackVector_ff6b6a59" {
bgcolor=aliceblue;
label="";
"fromV3TrackWithMuonIDV1TrackVector/fromV3TrackWithMuonIDV1TrackVector_ff6b6a59" [label=<<B>fromV3TrackWithMuonIDV1TrackVector/fromV3TrackWithMuonIDV1TrackVector_ff6b6a59</B><BR/>defaults-only>, shape=plaintext];
"fromV3TrackWithMuonIDV1TrackVector/fromV3TrackWithMuonIDV1TrackVector_ff6b6a59_in_InputTracks" [fillcolor=deepskyblue1, label=InputTracks, style=filled];
"fromV3TrackWithMuonIDV1TrackVector/fromV3TrackWithMuonIDV1TrackVector_ff6b6a59" -> "fromV3TrackWithMuonIDV1TrackVector/fromV3TrackWithMuonIDV1TrackVector_ff6b6a59_in_InputTracks"  [minlen=0, style=invis];
"fromV3TrackWithMuonIDV1TrackVector/fromV3TrackWithMuonIDV1TrackVector_ff6b6a59_out_OutputTracks" [fillcolor=coral1, label=OutputTracks, style=filled];
"fromV3TrackWithMuonIDV1TrackVector/fromV3TrackWithMuonIDV1TrackVector_ff6b6a59" -> "fromV3TrackWithMuonIDV1TrackVector/fromV3TrackWithMuonIDV1TrackVector_ff6b6a59_out_OutputTracks"  [minlen=0, style=invis];
}

"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1d9541b1_out_Output" -> "fromV3TrackWithMuonIDV1TrackVector/fromV3TrackWithMuonIDV1TrackVector_ff6b6a59_in_InputTracks";
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_2bd09f7a_out_Output" -> "LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex_5d9c3a9d_in_InputComposites";
subgraph "cluster_CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_2bd09f7a" {
bgcolor=aliceblue;
label="";
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_2bd09f7a" [label=<<B>CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_2bd09f7a</B><BR/>AssumedMass = mu+<BR/>CombinationCut = ( ( MAXSDOCA &lt; 0.2 ) &amp; ( MAXSDOCACHI2 &lt; 25.0 ) )<BR/>VertexCut = ( ( ( VALUE_OR(Value=nan) @ _CHI2DOF ) &lt; 25.0 ) &amp; ( MASS &gt; 2700.0 ) )>, shape=plaintext];
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_2bd09f7a_in_InputUniqueIDGenerator" [fillcolor=deepskyblue1, label=InputUniqueIDGenerator, style=filled];
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_2bd09f7a" -> "CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_2bd09f7a_in_InputUniqueIDGenerator"  [minlen=0, style=invis];
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_2bd09f7a_in_InputTracks" [fillcolor=deepskyblue1, label=InputTracks, style=filled];
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_2bd09f7a" -> "CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_2bd09f7a_in_InputTracks"  [minlen=0, style=invis];
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_2bd09f7a_in_CombinationCut_PyConfDataDependencies" [fillcolor=deepskyblue1, label=CombinationCut_PyConfDataDependencies, style=filled];
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_2bd09f7a" -> "CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_2bd09f7a_in_CombinationCut_PyConfDataDependencies"  [minlen=0, style=invis];
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_2bd09f7a_in_VertexCut_PyConfDataDependencies" [fillcolor=deepskyblue1, label=VertexCut_PyConfDataDependencies, style=filled];
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_2bd09f7a" -> "CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_2bd09f7a_in_VertexCut_PyConfDataDependencies"  [minlen=0, style=invis];
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_2bd09f7a_out_Output" [fillcolor=coral1, label=Output, style=filled];
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_2bd09f7a" -> "CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_2bd09f7a_out_Output"  [minlen=0, style=invis];
}

"UniqueIDGeneratorAlg/UniqueIDGeneratorAlg_26e527e9_out_Output" -> "CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_2bd09f7a_in_InputUniqueIDGenerator";
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1d9541b1_out_Output" -> "CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_2bd09f7a_in_InputTracks";
subgraph "cluster_DeterministicPrescaler/Hlt1DiMuonLowMass_Prescaler" {
bgcolor=aliceblue;
label="";
"DeterministicPrescaler/Hlt1DiMuonLowMass_Prescaler" [label=<<B>DeterministicPrescaler/Hlt1DiMuonLowMass_Prescaler</B><BR/>AcceptFraction = 1.0<BR/>SeedName = Hlt1DiMuonLowMassPrescaler>, shape=plaintext];
"DeterministicPrescaler/Hlt1DiMuonLowMass_Prescaler_in_ODINLocation" [fillcolor=deepskyblue1, label=ODINLocation, style=filled];
"DeterministicPrescaler/Hlt1DiMuonLowMass_Prescaler" -> "DeterministicPrescaler/Hlt1DiMuonLowMass_Prescaler_in_ODINLocation"  [minlen=0, style=invis];
}

"createODIN/Decode_ODIN_out_ODIN" -> "DeterministicPrescaler/Hlt1DiMuonLowMass_Prescaler_in_ODINLocation";
subgraph "cluster_createODIN/Decode_ODIN" {
bgcolor=aliceblue;
label="";
"createODIN/Decode_ODIN" [label=<<B>createODIN/Decode_ODIN</B><BR/>defaults-only>, shape=plaintext];
"createODIN/Decode_ODIN_in_RawBanks" [fillcolor=deepskyblue1, label=RawBanks, style=filled];
"createODIN/Decode_ODIN" -> "createODIN/Decode_ODIN_in_RawBanks"  [minlen=0, style=invis];
"createODIN/Decode_ODIN_out_ODIN" [fillcolor=coral1, label=ODIN, style=filled];
"createODIN/Decode_ODIN" -> "createODIN/Decode_ODIN_out_ODIN"  [minlen=0, style=invis];
}

"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_out_RawBankLocations" -> "createODIN/Decode_ODIN_in_RawBanks";
subgraph "cluster_LHCb::UnpackRawEvent/UnpackRawEvent_ODIN" {
bgcolor=aliceblue;
label="";
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN" [label=<<B>LHCb::UnpackRawEvent/UnpackRawEvent_ODIN</B><BR/>BankTypes = [&#x27;ODIN&#x27;]<BR/>RawBankLocations = /Event/RawBanks/ODIN>, shape=plaintext];
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_in_RawEventLocation" [fillcolor=deepskyblue1, label=RawEventLocation, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN" -> "LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_in_RawEventLocation"  [minlen=0, style=invis];
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_out_RawBankLocations" [fillcolor=coral1, label=RawBankLocations, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN" -> "LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_out_RawBankLocations"  [minlen=0, style=invis];
}

"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" -> "LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_in_RawEventLocation";
subgraph "cluster_Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent" {
bgcolor=aliceblue;
label="";
"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent" [label=<<B>Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent</B><BR/>Output = /Event/DAQ/RawEvent>, shape=plaintext];
"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" [fillcolor=coral1, label=Output, style=filled];
"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent" -> "Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output"  [minlen=0, style=invis];
}

subgraph "cluster_CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_385ff72d" {
bgcolor=aliceblue;
label="";
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_385ff72d" [label=<<B>CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_385ff72d</B><BR/>AssumedMass = mu+<BR/>CombinationCut = ( ( MAXSDOCA &lt; 0.2 ) &amp; ( MAXSDOCACHI2 &lt; 25.0 ) )<BR/>VertexCut = ( ( ( VALUE_OR(Value=nan) @ _CHI2DOF ) &lt; 25.0 ) &amp; ( MASS &gt; 0.0 ) )>, shape=plaintext];
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_385ff72d_in_InputUniqueIDGenerator" [fillcolor=deepskyblue1, label=InputUniqueIDGenerator, style=filled];
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_385ff72d" -> "CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_385ff72d_in_InputUniqueIDGenerator"  [minlen=0, style=invis];
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_385ff72d_in_InputTracks" [fillcolor=deepskyblue1, label=InputTracks, style=filled];
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_385ff72d" -> "CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_385ff72d_in_InputTracks"  [minlen=0, style=invis];
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_385ff72d_in_CombinationCut_PyConfDataDependencies" [fillcolor=deepskyblue1, label=CombinationCut_PyConfDataDependencies, style=filled];
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_385ff72d" -> "CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_385ff72d_in_CombinationCut_PyConfDataDependencies"  [minlen=0, style=invis];
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_385ff72d_in_VertexCut_PyConfDataDependencies" [fillcolor=deepskyblue1, label=VertexCut_PyConfDataDependencies, style=filled];
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_385ff72d" -> "CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_385ff72d_in_VertexCut_PyConfDataDependencies"  [minlen=0, style=invis];
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_385ff72d_out_Output" [fillcolor=coral1, label=Output, style=filled];
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_385ff72d" -> "CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_385ff72d_out_Output"  [minlen=0, style=invis];
}

"UniqueIDGeneratorAlg/UniqueIDGeneratorAlg_26e527e9_out_Output" -> "CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_385ff72d_in_InputUniqueIDGenerator";
subgraph "cluster_UniqueIDGeneratorAlg/UniqueIDGeneratorAlg_26e527e9" {
bgcolor=aliceblue;
label="";
"UniqueIDGeneratorAlg/UniqueIDGeneratorAlg_26e527e9" [label=<<B>UniqueIDGeneratorAlg/UniqueIDGeneratorAlg_26e527e9</B><BR/>defaults-only>, shape=plaintext];
"UniqueIDGeneratorAlg/UniqueIDGeneratorAlg_26e527e9_out_Output" [fillcolor=coral1, label=Output, style=filled];
"UniqueIDGeneratorAlg/UniqueIDGeneratorAlg_26e527e9" -> "UniqueIDGeneratorAlg/UniqueIDGeneratorAlg_26e527e9_out_Output"  [minlen=0, style=invis];
}

"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1c05ae75_out_Output" -> "CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_385ff72d_in_InputTracks";
subgraph "cluster_PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1c05ae75" {
bgcolor=aliceblue;
label="";
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1c05ae75" [label=<<B>PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1c05ae75</B><BR/>Cut = FILTER(Functor=( ISMUON &amp; ( ( MAGNITUDE @ THREEMOM[...] ( ( VALUE_OR(Value=nan) @ _CHI2DOF ) &lt; 100.0 ) ))>, shape=plaintext];
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1c05ae75_in_Input" [fillcolor=deepskyblue1, label=Input, style=filled];
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1c05ae75" -> "PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1c05ae75_in_Input"  [minlen=0, style=invis];
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1c05ae75_in_Cut_PyConfDataDependencies" [fillcolor=deepskyblue1, label=Cut_PyConfDataDependencies, style=filled];
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1c05ae75" -> "PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1c05ae75_in_Cut_PyConfDataDependencies"  [minlen=0, style=invis];
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1c05ae75_out_OutputStorage" [fillcolor=coral1, label=OutputStorage, style=filled];
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1c05ae75" -> "PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1c05ae75_out_OutputStorage"  [minlen=0, style=invis];
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1c05ae75_out_Output" [fillcolor=coral1, label=Output, style=filled];
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1c05ae75" -> "PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1c05ae75_out_Output"  [minlen=0, style=invis];
}

"MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89_out_Output" -> "PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1c05ae75_in_Input";
subgraph "cluster_MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89" {
bgcolor=aliceblue;
label="";
"MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89" [label=<<B>MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89</B><BR/>defaults-only>, shape=plaintext];
"MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89_in_Input1" [fillcolor=deepskyblue1, label=Input1, style=filled];
"MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89" -> "MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89_in_Input1"  [minlen=0, style=invis];
"MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89_in_Input2" [fillcolor=deepskyblue1, label=Input2, style=filled];
"MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89" -> "MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89_in_Input2"  [minlen=0, style=invis];
"MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89_out_Output" [fillcolor=coral1, label=Output, style=filled];
"MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89" -> "MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89_out_Output"  [minlen=0, style=invis];
}

"VeloKalman/VeloKalman_bf73c006_out_OutputTracksLocation" -> "MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89_in_Input1";
subgraph "cluster_VeloKalman/VeloKalman_bf73c006" {
bgcolor=aliceblue;
label="";
"VeloKalman/VeloKalman_bf73c006" [label=<<B>VeloKalman/VeloKalman_bf73c006</B><BR/>defaults-only>, shape=plaintext];
"VeloKalman/VeloKalman_bf73c006_in_HitsLocation" [fillcolor=deepskyblue1, label=HitsLocation, style=filled];
"VeloKalman/VeloKalman_bf73c006" -> "VeloKalman/VeloKalman_bf73c006_in_HitsLocation"  [minlen=0, style=invis];
"VeloKalman/VeloKalman_bf73c006_in_TracksVPLocation" [fillcolor=deepskyblue1, label=TracksVPLocation, style=filled];
"VeloKalman/VeloKalman_bf73c006" -> "VeloKalman/VeloKalman_bf73c006_in_TracksVPLocation"  [minlen=0, style=invis];
"VeloKalman/VeloKalman_bf73c006_in_TracksFTLocation" [fillcolor=deepskyblue1, label=TracksFTLocation, style=filled];
"VeloKalman/VeloKalman_bf73c006" -> "VeloKalman/VeloKalman_bf73c006_in_TracksFTLocation"  [minlen=0, style=invis];
"VeloKalman/VeloKalman_bf73c006_in_UniqueIDGenerator" [fillcolor=deepskyblue1, label=UniqueIDGenerator, style=filled];
"VeloKalman/VeloKalman_bf73c006" -> "VeloKalman/VeloKalman_bf73c006_in_UniqueIDGenerator"  [minlen=0, style=invis];
"VeloKalman/VeloKalman_bf73c006_out_OutputTracksLocation" [fillcolor=coral1, label=OutputTracksLocation, style=filled];
"VeloKalman/VeloKalman_bf73c006" -> "VeloKalman/VeloKalman_bf73c006_out_OutputTracksLocation"  [minlen=0, style=invis];
}

"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_HitsLocation" -> "VeloKalman/VeloKalman_bf73c006_in_HitsLocation";
subgraph "cluster_VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651" {
bgcolor=aliceblue;
label="";
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651" [label=<<B>VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651</B><BR/>SensorMasks = (False, False, False, False, False, False, False, [...], False, False, False, False, False, False, False)<BR/>MaxScatterSeeding = 0.1<BR/>MaxScatterForwarding = 0.1<BR/>MaxScatter3hits = 0.02<BR/>SkipForward = 1>, shape=plaintext];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_in_RawBanks" [fillcolor=deepskyblue1, label=RawBanks, style=filled];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651" -> "VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_in_RawBanks"  [minlen=0, style=invis];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksLocation" [fillcolor=coral1, label=TracksLocation, style=filled];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651" -> "VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksLocation"  [minlen=0, style=invis];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksBackwardLocation" [fillcolor=coral1, label=TracksBackwardLocation, style=filled];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651" -> "VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksBackwardLocation"  [minlen=0, style=invis];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_HitsLocation" [fillcolor=coral1, label=HitsLocation, style=filled];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651" -> "VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_HitsLocation"  [minlen=0, style=invis];
}

"LHCb::UnpackRawEvent/UnpackRawEvent_VP_out_RawBankLocations" -> "VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_in_RawBanks";
subgraph "cluster_LHCb::UnpackRawEvent/UnpackRawEvent_VP" {
bgcolor=aliceblue;
label="";
"LHCb::UnpackRawEvent/UnpackRawEvent_VP" [label=<<B>LHCb::UnpackRawEvent/UnpackRawEvent_VP</B><BR/>BankTypes = [&#x27;VP&#x27;]<BR/>RawBankLocations = /Event/RawBanks/VP>, shape=plaintext];
"LHCb::UnpackRawEvent/UnpackRawEvent_VP_in_RawEventLocation" [fillcolor=deepskyblue1, label=RawEventLocation, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_VP" -> "LHCb::UnpackRawEvent/UnpackRawEvent_VP_in_RawEventLocation"  [minlen=0, style=invis];
"LHCb::UnpackRawEvent/UnpackRawEvent_VP_out_RawBankLocations" [fillcolor=coral1, label=RawBankLocations, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_VP" -> "LHCb::UnpackRawEvent/UnpackRawEvent_VP_out_RawBankLocations"  [minlen=0, style=invis];
}

"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" -> "LHCb::UnpackRawEvent/UnpackRawEvent_VP_in_RawEventLocation";
subgraph "cluster_Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent" {
bgcolor=aliceblue;
label="";
"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent" [label=<<B>Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent</B><BR/>Output = /Event/DAQ/RawEvent>, shape=plaintext];
"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" [fillcolor=coral1, label=Output, style=filled];
"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent" -> "Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output"  [minlen=0, style=invis];
}

"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksLocation" -> "VeloKalman/VeloKalman_bf73c006_in_TracksVPLocation";
"SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1_out_Output" -> "VeloKalman/VeloKalman_bf73c006_in_TracksFTLocation";
subgraph "cluster_SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1" {
bgcolor=aliceblue;
label="";
"SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1" [label=<<B>SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1</B><BR/>defaults-only>, shape=plaintext];
"SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1_in_HitsLocation" [fillcolor=deepskyblue1, label=HitsLocation, style=filled];
"SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1" -> "SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1_in_HitsLocation"  [minlen=0, style=invis];
"SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1_in_InputTracks" [fillcolor=deepskyblue1, label=InputTracks, style=filled];
"SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1" -> "SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1_in_InputTracks"  [minlen=0, style=invis];
"SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1_out_Output" [fillcolor=coral1, label=Output, style=filled];
"SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1" -> "SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1_out_Output"  [minlen=0, style=invis];
}

"SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19_out_Output" -> "SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1_in_HitsLocation";
subgraph "cluster_SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19" {
bgcolor=aliceblue;
label="";
"SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19" [label=<<B>SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19</B><BR/>defaults-only>, shape=plaintext];
"SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19_in_HitsLocation" [fillcolor=deepskyblue1, label=HitsLocation, style=filled];
"SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19" -> "SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19_in_HitsLocation"  [minlen=0, style=invis];
"SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19_out_Output" [fillcolor=coral1, label=Output, style=filled];
"SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19" -> "SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19_out_Output"  [minlen=0, style=invis];
}

"FTRawBankDecoder/FTRawBankDecoder_out_OutputLocation" -> "SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19_in_HitsLocation";
subgraph "cluster_FTRawBankDecoder/FTRawBankDecoder" {
bgcolor=aliceblue;
label="";
"FTRawBankDecoder/FTRawBankDecoder" [label=<<B>FTRawBankDecoder/FTRawBankDecoder</B><BR/>defaults-only>, shape=plaintext];
"FTRawBankDecoder/FTRawBankDecoder_in_Odin" [fillcolor=deepskyblue1, label=Odin, style=filled];
"FTRawBankDecoder/FTRawBankDecoder" -> "FTRawBankDecoder/FTRawBankDecoder_in_Odin"  [minlen=0, style=invis];
"FTRawBankDecoder/FTRawBankDecoder_in_RawBanks" [fillcolor=deepskyblue1, label=RawBanks, style=filled];
"FTRawBankDecoder/FTRawBankDecoder" -> "FTRawBankDecoder/FTRawBankDecoder_in_RawBanks"  [minlen=0, style=invis];
"FTRawBankDecoder/FTRawBankDecoder_out_OutputLocation" [fillcolor=coral1, label=OutputLocation, style=filled];
"FTRawBankDecoder/FTRawBankDecoder" -> "FTRawBankDecoder/FTRawBankDecoder_out_OutputLocation"  [minlen=0, style=invis];
}

"createODIN/Decode_ODIN_out_ODIN" -> "FTRawBankDecoder/FTRawBankDecoder_in_Odin";
subgraph "cluster_createODIN/Decode_ODIN" {
bgcolor=aliceblue;
label="";
"createODIN/Decode_ODIN" [label=<<B>createODIN/Decode_ODIN</B><BR/>defaults-only>, shape=plaintext];
"createODIN/Decode_ODIN_in_RawBanks" [fillcolor=deepskyblue1, label=RawBanks, style=filled];
"createODIN/Decode_ODIN" -> "createODIN/Decode_ODIN_in_RawBanks"  [minlen=0, style=invis];
"createODIN/Decode_ODIN_out_ODIN" [fillcolor=coral1, label=ODIN, style=filled];
"createODIN/Decode_ODIN" -> "createODIN/Decode_ODIN_out_ODIN"  [minlen=0, style=invis];
}

"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_out_RawBankLocations" -> "createODIN/Decode_ODIN_in_RawBanks";
subgraph "cluster_LHCb::UnpackRawEvent/UnpackRawEvent_ODIN" {
bgcolor=aliceblue;
label="";
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN" [label=<<B>LHCb::UnpackRawEvent/UnpackRawEvent_ODIN</B><BR/>BankTypes = [&#x27;ODIN&#x27;]<BR/>RawBankLocations = /Event/RawBanks/ODIN>, shape=plaintext];
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_in_RawEventLocation" [fillcolor=deepskyblue1, label=RawEventLocation, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN" -> "LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_in_RawEventLocation"  [minlen=0, style=invis];
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_out_RawBankLocations" [fillcolor=coral1, label=RawBankLocations, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN" -> "LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_out_RawBankLocations"  [minlen=0, style=invis];
}

"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" -> "LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_in_RawEventLocation";
"LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster_out_RawBankLocations" -> "FTRawBankDecoder/FTRawBankDecoder_in_RawBanks";
subgraph "cluster_LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster" {
bgcolor=aliceblue;
label="";
"LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster" [label=<<B>LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster</B><BR/>BankTypes = [&#x27;FTCluster&#x27;]<BR/>RawBankLocations = /Event/RawBanks/FTCluster>, shape=plaintext];
"LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster_in_RawEventLocation" [fillcolor=deepskyblue1, label=RawEventLocation, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster" -> "LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster_in_RawEventLocation"  [minlen=0, style=invis];
"LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster_out_RawBankLocations" [fillcolor=coral1, label=RawBankLocations, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster" -> "LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster_out_RawBankLocations"  [minlen=0, style=invis];
}

"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" -> "LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster_in_RawEventLocation";
"PrVeloUT/PrVeloUT_4eab5c1b_out_OutputTracksName" -> "SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1_in_InputTracks";
subgraph "cluster_PrVeloUT/PrVeloUT_4eab5c1b" {
bgcolor=aliceblue;
label="";
"PrVeloUT/PrVeloUT_4eab5c1b" [label=<<B>PrVeloUT/PrVeloUT_4eab5c1b</B><BR/>defaults-only>, shape=plaintext];
"PrVeloUT/PrVeloUT_4eab5c1b_in_InputTracksName" [fillcolor=deepskyblue1, label=InputTracksName, style=filled];
"PrVeloUT/PrVeloUT_4eab5c1b" -> "PrVeloUT/PrVeloUT_4eab5c1b_in_InputTracksName"  [minlen=0, style=invis];
"PrVeloUT/PrVeloUT_4eab5c1b_in_UTHits" [fillcolor=deepskyblue1, label=UTHits, style=filled];
"PrVeloUT/PrVeloUT_4eab5c1b" -> "PrVeloUT/PrVeloUT_4eab5c1b_in_UTHits"  [minlen=0, style=invis];
"PrVeloUT/PrVeloUT_4eab5c1b_out_OutputTracksName" [fillcolor=coral1, label=OutputTracksName, style=filled];
"PrVeloUT/PrVeloUT_4eab5c1b" -> "PrVeloUT/PrVeloUT_4eab5c1b_out_OutputTracksName"  [minlen=0, style=invis];
}

"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksLocation" -> "PrVeloUT/PrVeloUT_4eab5c1b_in_InputTracksName";
"PrStorePrUTHits/PrStorePrUTHits_df75b912_out_UTHitsLocation" -> "PrVeloUT/PrVeloUT_4eab5c1b_in_UTHits";
subgraph "cluster_PrStorePrUTHits/PrStorePrUTHits_df75b912" {
bgcolor=aliceblue;
label="";
"PrStorePrUTHits/PrStorePrUTHits_df75b912" [label=<<B>PrStorePrUTHits/PrStorePrUTHits_df75b912</B><BR/>isCluster = True<BR/>positionMethod = GeoWeighting>, shape=plaintext];
"PrStorePrUTHits/PrStorePrUTHits_df75b912_in_RawBanks" [fillcolor=deepskyblue1, label=RawBanks, style=filled];
"PrStorePrUTHits/PrStorePrUTHits_df75b912" -> "PrStorePrUTHits/PrStorePrUTHits_df75b912_in_RawBanks"  [minlen=0, style=invis];
"PrStorePrUTHits/PrStorePrUTHits_df75b912_out_UTHitsLocation" [fillcolor=coral1, label=UTHitsLocation, style=filled];
"PrStorePrUTHits/PrStorePrUTHits_df75b912" -> "PrStorePrUTHits/PrStorePrUTHits_df75b912_out_UTHitsLocation"  [minlen=0, style=invis];
}

"LHCb::UnpackRawEvent/UnpackRawEvent_UT_out_RawBankLocations" -> "PrStorePrUTHits/PrStorePrUTHits_df75b912_in_RawBanks";
subgraph "cluster_LHCb::UnpackRawEvent/UnpackRawEvent_UT" {
bgcolor=aliceblue;
label="";
"LHCb::UnpackRawEvent/UnpackRawEvent_UT" [label=<<B>LHCb::UnpackRawEvent/UnpackRawEvent_UT</B><BR/>BankTypes = [&#x27;UT&#x27;]<BR/>RawBankLocations = /Event/RawBanks/UT>, shape=plaintext];
"LHCb::UnpackRawEvent/UnpackRawEvent_UT_in_RawEventLocation" [fillcolor=deepskyblue1, label=RawEventLocation, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_UT" -> "LHCb::UnpackRawEvent/UnpackRawEvent_UT_in_RawEventLocation"  [minlen=0, style=invis];
"LHCb::UnpackRawEvent/UnpackRawEvent_UT_out_RawBankLocations" [fillcolor=coral1, label=RawBankLocations, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_UT" -> "LHCb::UnpackRawEvent/UnpackRawEvent_UT_out_RawBankLocations"  [minlen=0, style=invis];
}

"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" -> "LHCb::UnpackRawEvent/UnpackRawEvent_UT_in_RawEventLocation";
"UniqueIDGeneratorAlg/UniqueIDGeneratorAlg_26e527e9_out_Output" -> "VeloKalman/VeloKalman_bf73c006_in_UniqueIDGenerator";
"MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4_out_OutputMuonPID" -> "MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89_in_Input2";
subgraph "cluster_MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4" {
bgcolor=aliceblue;
label="";
"MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4" [label=<<B>MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4</B><BR/>runMVA = False>, shape=plaintext];
"MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4_in_InputTracks" [fillcolor=deepskyblue1, label=InputTracks, style=filled];
"MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4" -> "MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4_in_InputTracks"  [minlen=0, style=invis];
"MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4_in_InputMuonHits" [fillcolor=deepskyblue1, label=InputMuonHits, style=filled];
"MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4" -> "MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4_in_InputMuonHits"  [minlen=0, style=invis];
"MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4_out_OutputMuonPID" [fillcolor=coral1, label=OutputMuonPID, style=filled];
"MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4" -> "MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4_out_OutputMuonPID"  [minlen=0, style=invis];
}

"SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1_out_Output" -> "MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4_in_InputTracks";
"MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab_out_HitContainer" -> "MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4_in_InputMuonHits";
subgraph "cluster_MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab" {
bgcolor=aliceblue;
label="";
"MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab" [label=<<B>MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab</B><BR/>defaults-only>, shape=plaintext];
"MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab_in_RawBanks" [fillcolor=deepskyblue1, label=RawBanks, style=filled];
"MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab" -> "MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab_in_RawBanks"  [minlen=0, style=invis];
"MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab_in_ErrorRawBanks" [fillcolor=deepskyblue1, label=ErrorRawBanks, style=filled];
"MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab" -> "MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab_in_ErrorRawBanks"  [minlen=0, style=invis];
"MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab_out_HitContainer" [fillcolor=coral1, label=HitContainer, style=filled];
"MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab" -> "MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab_out_HitContainer"  [minlen=0, style=invis];
}

"LHCb::UnpackRawEvent/UnpackRawEvent_Muon_out_RawBankLocations" -> "MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab_in_RawBanks";
subgraph "cluster_LHCb::UnpackRawEvent/UnpackRawEvent_Muon" {
bgcolor=aliceblue;
label="";
"LHCb::UnpackRawEvent/UnpackRawEvent_Muon" [label=<<B>LHCb::UnpackRawEvent/UnpackRawEvent_Muon</B><BR/>BankTypes = [&#x27;Muon&#x27;]<BR/>RawBankLocations = /Event/RawBanks/Muon>, shape=plaintext];
"LHCb::UnpackRawEvent/UnpackRawEvent_Muon_in_RawEventLocation" [fillcolor=deepskyblue1, label=RawEventLocation, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_Muon" -> "LHCb::UnpackRawEvent/UnpackRawEvent_Muon_in_RawEventLocation"  [minlen=0, style=invis];
"LHCb::UnpackRawEvent/UnpackRawEvent_Muon_out_RawBankLocations" [fillcolor=coral1, label=RawBankLocations, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_Muon" -> "LHCb::UnpackRawEvent/UnpackRawEvent_Muon_out_RawBankLocations"  [minlen=0, style=invis];
}

"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" -> "LHCb::UnpackRawEvent/UnpackRawEvent_Muon_in_RawEventLocation";
"LHCb::UnpackRawEvent/UnpackRawEvent_MuonError_out_RawBankLocations" -> "MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab_in_ErrorRawBanks";
subgraph "cluster_LHCb::UnpackRawEvent/UnpackRawEvent_MuonError" {
bgcolor=aliceblue;
label="";
"LHCb::UnpackRawEvent/UnpackRawEvent_MuonError" [label=<<B>LHCb::UnpackRawEvent/UnpackRawEvent_MuonError</B><BR/>BankTypes = [&#x27;MuonError&#x27;]<BR/>RawBankLocations = /Event/RawBanks/MuonError>, shape=plaintext];
"LHCb::UnpackRawEvent/UnpackRawEvent_MuonError_in_RawEventLocation" [fillcolor=deepskyblue1, label=RawEventLocation, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_MuonError" -> "LHCb::UnpackRawEvent/UnpackRawEvent_MuonError_in_RawEventLocation"  [minlen=0, style=invis];
"LHCb::UnpackRawEvent/UnpackRawEvent_MuonError_out_RawBankLocations" [fillcolor=coral1, label=RawBankLocations, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_MuonError" -> "LHCb::UnpackRawEvent/UnpackRawEvent_MuonError_out_RawBankLocations"  [minlen=0, style=invis];
}

"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" -> "LHCb::UnpackRawEvent/UnpackRawEvent_MuonError_in_RawEventLocation";
"TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_out_OutputVertices" -> "PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1c05ae75_in_Cut_PyConfDataDependencies";
subgraph "cluster_TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c" {
bgcolor=aliceblue;
label="";
"TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c" [label=<<B>TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c</B><BR/>MinZ = -600.0>, shape=plaintext];
"TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_in_TracksLocation" [fillcolor=deepskyblue1, label=TracksLocation, style=filled];
"TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c" -> "TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_in_TracksLocation"  [minlen=0, style=invis];
"TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_in_TracksBackwardLocation" [fillcolor=deepskyblue1, label=TracksBackwardLocation, style=filled];
"TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c" -> "TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_in_TracksBackwardLocation"  [minlen=0, style=invis];
"TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_out_OutputVertices" [fillcolor=coral1, label=OutputVertices, style=filled];
"TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c" -> "TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_out_OutputVertices"  [minlen=0, style=invis];
}

"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksLocation" -> "TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_in_TracksLocation";
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksBackwardLocation" -> "TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_in_TracksBackwardLocation";
subgraph "cluster_LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex_fb2b99ce" {
bgcolor=aliceblue;
label="";
"LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex_fb2b99ce" [label=<<B>LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex_fb2b99ce</B><BR/>defaults-only>, shape=plaintext];
"LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex_fb2b99ce_in_TracksInVertices" [fillcolor=deepskyblue1, label=TracksInVertices, style=filled];
"LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex_fb2b99ce" -> "LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex_fb2b99ce_in_TracksInVertices"  [minlen=0, style=invis];
"LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex_fb2b99ce_in_ConvertedTracks" [fillcolor=deepskyblue1, label=ConvertedTracks, style=filled];
"LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex_fb2b99ce" -> "LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex_fb2b99ce_in_ConvertedTracks"  [minlen=0, style=invis];
"LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex_fb2b99ce_in_InputComposites" [fillcolor=deepskyblue1, label=InputComposites, style=filled];
"LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex_fb2b99ce" -> "LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex_fb2b99ce_in_InputComposites"  [minlen=0, style=invis];
"LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex_fb2b99ce_out_OutputVertices" [fillcolor=coral1, label=OutputVertices, style=filled];
"LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex_fb2b99ce" -> "LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex_fb2b99ce_out_OutputVertices"  [minlen=0, style=invis];
}

"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1c05ae75_out_Output" -> "LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex_fb2b99ce_in_TracksInVertices";
subgraph "cluster_PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1c05ae75" {
bgcolor=aliceblue;
label="";
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1c05ae75" [label=<<B>PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1c05ae75</B><BR/>Cut = FILTER(Functor=( ISMUON &amp; ( ( MAGNITUDE @ THREEMOM[...] ( ( VALUE_OR(Value=nan) @ _CHI2DOF ) &lt; 100.0 ) ))>, shape=plaintext];
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1c05ae75_in_Input" [fillcolor=deepskyblue1, label=Input, style=filled];
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1c05ae75" -> "PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1c05ae75_in_Input"  [minlen=0, style=invis];
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1c05ae75_in_Cut_PyConfDataDependencies" [fillcolor=deepskyblue1, label=Cut_PyConfDataDependencies, style=filled];
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1c05ae75" -> "PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1c05ae75_in_Cut_PyConfDataDependencies"  [minlen=0, style=invis];
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1c05ae75_out_OutputStorage" [fillcolor=coral1, label=OutputStorage, style=filled];
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1c05ae75" -> "PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1c05ae75_out_OutputStorage"  [minlen=0, style=invis];
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1c05ae75_out_Output" [fillcolor=coral1, label=Output, style=filled];
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1c05ae75" -> "PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1c05ae75_out_Output"  [minlen=0, style=invis];
}

"MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89_out_Output" -> "PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1c05ae75_in_Input";
subgraph "cluster_MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89" {
bgcolor=aliceblue;
label="";
"MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89" [label=<<B>MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89</B><BR/>defaults-only>, shape=plaintext];
"MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89_in_Input1" [fillcolor=deepskyblue1, label=Input1, style=filled];
"MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89" -> "MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89_in_Input1"  [minlen=0, style=invis];
"MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89_in_Input2" [fillcolor=deepskyblue1, label=Input2, style=filled];
"MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89" -> "MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89_in_Input2"  [minlen=0, style=invis];
"MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89_out_Output" [fillcolor=coral1, label=Output, style=filled];
"MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89" -> "MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89_out_Output"  [minlen=0, style=invis];
}

"VeloKalman/VeloKalman_bf73c006_out_OutputTracksLocation" -> "MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89_in_Input1";
subgraph "cluster_VeloKalman/VeloKalman_bf73c006" {
bgcolor=aliceblue;
label="";
"VeloKalman/VeloKalman_bf73c006" [label=<<B>VeloKalman/VeloKalman_bf73c006</B><BR/>defaults-only>, shape=plaintext];
"VeloKalman/VeloKalman_bf73c006_in_HitsLocation" [fillcolor=deepskyblue1, label=HitsLocation, style=filled];
"VeloKalman/VeloKalman_bf73c006" -> "VeloKalman/VeloKalman_bf73c006_in_HitsLocation"  [minlen=0, style=invis];
"VeloKalman/VeloKalman_bf73c006_in_TracksVPLocation" [fillcolor=deepskyblue1, label=TracksVPLocation, style=filled];
"VeloKalman/VeloKalman_bf73c006" -> "VeloKalman/VeloKalman_bf73c006_in_TracksVPLocation"  [minlen=0, style=invis];
"VeloKalman/VeloKalman_bf73c006_in_TracksFTLocation" [fillcolor=deepskyblue1, label=TracksFTLocation, style=filled];
"VeloKalman/VeloKalman_bf73c006" -> "VeloKalman/VeloKalman_bf73c006_in_TracksFTLocation"  [minlen=0, style=invis];
"VeloKalman/VeloKalman_bf73c006_in_UniqueIDGenerator" [fillcolor=deepskyblue1, label=UniqueIDGenerator, style=filled];
"VeloKalman/VeloKalman_bf73c006" -> "VeloKalman/VeloKalman_bf73c006_in_UniqueIDGenerator"  [minlen=0, style=invis];
"VeloKalman/VeloKalman_bf73c006_out_OutputTracksLocation" [fillcolor=coral1, label=OutputTracksLocation, style=filled];
"VeloKalman/VeloKalman_bf73c006" -> "VeloKalman/VeloKalman_bf73c006_out_OutputTracksLocation"  [minlen=0, style=invis];
}

"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_HitsLocation" -> "VeloKalman/VeloKalman_bf73c006_in_HitsLocation";
subgraph "cluster_VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651" {
bgcolor=aliceblue;
label="";
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651" [label=<<B>VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651</B><BR/>SensorMasks = (False, False, False, False, False, False, False, [...], False, False, False, False, False, False, False)<BR/>MaxScatterSeeding = 0.1<BR/>MaxScatterForwarding = 0.1<BR/>MaxScatter3hits = 0.02<BR/>SkipForward = 1>, shape=plaintext];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_in_RawBanks" [fillcolor=deepskyblue1, label=RawBanks, style=filled];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651" -> "VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_in_RawBanks"  [minlen=0, style=invis];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksLocation" [fillcolor=coral1, label=TracksLocation, style=filled];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651" -> "VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksLocation"  [minlen=0, style=invis];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksBackwardLocation" [fillcolor=coral1, label=TracksBackwardLocation, style=filled];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651" -> "VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksBackwardLocation"  [minlen=0, style=invis];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_HitsLocation" [fillcolor=coral1, label=HitsLocation, style=filled];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651" -> "VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_HitsLocation"  [minlen=0, style=invis];
}

"LHCb::UnpackRawEvent/UnpackRawEvent_VP_out_RawBankLocations" -> "VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_in_RawBanks";
subgraph "cluster_LHCb::UnpackRawEvent/UnpackRawEvent_VP" {
bgcolor=aliceblue;
label="";
"LHCb::UnpackRawEvent/UnpackRawEvent_VP" [label=<<B>LHCb::UnpackRawEvent/UnpackRawEvent_VP</B><BR/>BankTypes = [&#x27;VP&#x27;]<BR/>RawBankLocations = /Event/RawBanks/VP>, shape=plaintext];
"LHCb::UnpackRawEvent/UnpackRawEvent_VP_in_RawEventLocation" [fillcolor=deepskyblue1, label=RawEventLocation, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_VP" -> "LHCb::UnpackRawEvent/UnpackRawEvent_VP_in_RawEventLocation"  [minlen=0, style=invis];
"LHCb::UnpackRawEvent/UnpackRawEvent_VP_out_RawBankLocations" [fillcolor=coral1, label=RawBankLocations, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_VP" -> "LHCb::UnpackRawEvent/UnpackRawEvent_VP_out_RawBankLocations"  [minlen=0, style=invis];
}

"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" -> "LHCb::UnpackRawEvent/UnpackRawEvent_VP_in_RawEventLocation";
subgraph "cluster_Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent" {
bgcolor=aliceblue;
label="";
"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent" [label=<<B>Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent</B><BR/>Output = /Event/DAQ/RawEvent>, shape=plaintext];
"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" [fillcolor=coral1, label=Output, style=filled];
"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent" -> "Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output"  [minlen=0, style=invis];
}

"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksLocation" -> "VeloKalman/VeloKalman_bf73c006_in_TracksVPLocation";
"SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1_out_Output" -> "VeloKalman/VeloKalman_bf73c006_in_TracksFTLocation";
subgraph "cluster_SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1" {
bgcolor=aliceblue;
label="";
"SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1" [label=<<B>SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1</B><BR/>defaults-only>, shape=plaintext];
"SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1_in_HitsLocation" [fillcolor=deepskyblue1, label=HitsLocation, style=filled];
"SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1" -> "SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1_in_HitsLocation"  [minlen=0, style=invis];
"SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1_in_InputTracks" [fillcolor=deepskyblue1, label=InputTracks, style=filled];
"SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1" -> "SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1_in_InputTracks"  [minlen=0, style=invis];
"SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1_out_Output" [fillcolor=coral1, label=Output, style=filled];
"SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1" -> "SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1_out_Output"  [minlen=0, style=invis];
}

"SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19_out_Output" -> "SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1_in_HitsLocation";
subgraph "cluster_SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19" {
bgcolor=aliceblue;
label="";
"SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19" [label=<<B>SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19</B><BR/>defaults-only>, shape=plaintext];
"SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19_in_HitsLocation" [fillcolor=deepskyblue1, label=HitsLocation, style=filled];
"SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19" -> "SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19_in_HitsLocation"  [minlen=0, style=invis];
"SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19_out_Output" [fillcolor=coral1, label=Output, style=filled];
"SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19" -> "SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19_out_Output"  [minlen=0, style=invis];
}

"FTRawBankDecoder/FTRawBankDecoder_out_OutputLocation" -> "SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19_in_HitsLocation";
subgraph "cluster_FTRawBankDecoder/FTRawBankDecoder" {
bgcolor=aliceblue;
label="";
"FTRawBankDecoder/FTRawBankDecoder" [label=<<B>FTRawBankDecoder/FTRawBankDecoder</B><BR/>defaults-only>, shape=plaintext];
"FTRawBankDecoder/FTRawBankDecoder_in_Odin" [fillcolor=deepskyblue1, label=Odin, style=filled];
"FTRawBankDecoder/FTRawBankDecoder" -> "FTRawBankDecoder/FTRawBankDecoder_in_Odin"  [minlen=0, style=invis];
"FTRawBankDecoder/FTRawBankDecoder_in_RawBanks" [fillcolor=deepskyblue1, label=RawBanks, style=filled];
"FTRawBankDecoder/FTRawBankDecoder" -> "FTRawBankDecoder/FTRawBankDecoder_in_RawBanks"  [minlen=0, style=invis];
"FTRawBankDecoder/FTRawBankDecoder_out_OutputLocation" [fillcolor=coral1, label=OutputLocation, style=filled];
"FTRawBankDecoder/FTRawBankDecoder" -> "FTRawBankDecoder/FTRawBankDecoder_out_OutputLocation"  [minlen=0, style=invis];
}

"createODIN/Decode_ODIN_out_ODIN" -> "FTRawBankDecoder/FTRawBankDecoder_in_Odin";
subgraph "cluster_createODIN/Decode_ODIN" {
bgcolor=aliceblue;
label="";
"createODIN/Decode_ODIN" [label=<<B>createODIN/Decode_ODIN</B><BR/>defaults-only>, shape=plaintext];
"createODIN/Decode_ODIN_in_RawBanks" [fillcolor=deepskyblue1, label=RawBanks, style=filled];
"createODIN/Decode_ODIN" -> "createODIN/Decode_ODIN_in_RawBanks"  [minlen=0, style=invis];
"createODIN/Decode_ODIN_out_ODIN" [fillcolor=coral1, label=ODIN, style=filled];
"createODIN/Decode_ODIN" -> "createODIN/Decode_ODIN_out_ODIN"  [minlen=0, style=invis];
}

"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_out_RawBankLocations" -> "createODIN/Decode_ODIN_in_RawBanks";
subgraph "cluster_LHCb::UnpackRawEvent/UnpackRawEvent_ODIN" {
bgcolor=aliceblue;
label="";
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN" [label=<<B>LHCb::UnpackRawEvent/UnpackRawEvent_ODIN</B><BR/>BankTypes = [&#x27;ODIN&#x27;]<BR/>RawBankLocations = /Event/RawBanks/ODIN>, shape=plaintext];
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_in_RawEventLocation" [fillcolor=deepskyblue1, label=RawEventLocation, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN" -> "LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_in_RawEventLocation"  [minlen=0, style=invis];
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_out_RawBankLocations" [fillcolor=coral1, label=RawBankLocations, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN" -> "LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_out_RawBankLocations"  [minlen=0, style=invis];
}

"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" -> "LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_in_RawEventLocation";
"LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster_out_RawBankLocations" -> "FTRawBankDecoder/FTRawBankDecoder_in_RawBanks";
subgraph "cluster_LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster" {
bgcolor=aliceblue;
label="";
"LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster" [label=<<B>LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster</B><BR/>BankTypes = [&#x27;FTCluster&#x27;]<BR/>RawBankLocations = /Event/RawBanks/FTCluster>, shape=plaintext];
"LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster_in_RawEventLocation" [fillcolor=deepskyblue1, label=RawEventLocation, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster" -> "LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster_in_RawEventLocation"  [minlen=0, style=invis];
"LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster_out_RawBankLocations" [fillcolor=coral1, label=RawBankLocations, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster" -> "LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster_out_RawBankLocations"  [minlen=0, style=invis];
}

"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" -> "LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster_in_RawEventLocation";
"PrVeloUT/PrVeloUT_4eab5c1b_out_OutputTracksName" -> "SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1_in_InputTracks";
subgraph "cluster_PrVeloUT/PrVeloUT_4eab5c1b" {
bgcolor=aliceblue;
label="";
"PrVeloUT/PrVeloUT_4eab5c1b" [label=<<B>PrVeloUT/PrVeloUT_4eab5c1b</B><BR/>defaults-only>, shape=plaintext];
"PrVeloUT/PrVeloUT_4eab5c1b_in_InputTracksName" [fillcolor=deepskyblue1, label=InputTracksName, style=filled];
"PrVeloUT/PrVeloUT_4eab5c1b" -> "PrVeloUT/PrVeloUT_4eab5c1b_in_InputTracksName"  [minlen=0, style=invis];
"PrVeloUT/PrVeloUT_4eab5c1b_in_UTHits" [fillcolor=deepskyblue1, label=UTHits, style=filled];
"PrVeloUT/PrVeloUT_4eab5c1b" -> "PrVeloUT/PrVeloUT_4eab5c1b_in_UTHits"  [minlen=0, style=invis];
"PrVeloUT/PrVeloUT_4eab5c1b_out_OutputTracksName" [fillcolor=coral1, label=OutputTracksName, style=filled];
"PrVeloUT/PrVeloUT_4eab5c1b" -> "PrVeloUT/PrVeloUT_4eab5c1b_out_OutputTracksName"  [minlen=0, style=invis];
}

"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksLocation" -> "PrVeloUT/PrVeloUT_4eab5c1b_in_InputTracksName";
"PrStorePrUTHits/PrStorePrUTHits_df75b912_out_UTHitsLocation" -> "PrVeloUT/PrVeloUT_4eab5c1b_in_UTHits";
subgraph "cluster_PrStorePrUTHits/PrStorePrUTHits_df75b912" {
bgcolor=aliceblue;
label="";
"PrStorePrUTHits/PrStorePrUTHits_df75b912" [label=<<B>PrStorePrUTHits/PrStorePrUTHits_df75b912</B><BR/>isCluster = True<BR/>positionMethod = GeoWeighting>, shape=plaintext];
"PrStorePrUTHits/PrStorePrUTHits_df75b912_in_RawBanks" [fillcolor=deepskyblue1, label=RawBanks, style=filled];
"PrStorePrUTHits/PrStorePrUTHits_df75b912" -> "PrStorePrUTHits/PrStorePrUTHits_df75b912_in_RawBanks"  [minlen=0, style=invis];
"PrStorePrUTHits/PrStorePrUTHits_df75b912_out_UTHitsLocation" [fillcolor=coral1, label=UTHitsLocation, style=filled];
"PrStorePrUTHits/PrStorePrUTHits_df75b912" -> "PrStorePrUTHits/PrStorePrUTHits_df75b912_out_UTHitsLocation"  [minlen=0, style=invis];
}

"LHCb::UnpackRawEvent/UnpackRawEvent_UT_out_RawBankLocations" -> "PrStorePrUTHits/PrStorePrUTHits_df75b912_in_RawBanks";
subgraph "cluster_LHCb::UnpackRawEvent/UnpackRawEvent_UT" {
bgcolor=aliceblue;
label="";
"LHCb::UnpackRawEvent/UnpackRawEvent_UT" [label=<<B>LHCb::UnpackRawEvent/UnpackRawEvent_UT</B><BR/>BankTypes = [&#x27;UT&#x27;]<BR/>RawBankLocations = /Event/RawBanks/UT>, shape=plaintext];
"LHCb::UnpackRawEvent/UnpackRawEvent_UT_in_RawEventLocation" [fillcolor=deepskyblue1, label=RawEventLocation, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_UT" -> "LHCb::UnpackRawEvent/UnpackRawEvent_UT_in_RawEventLocation"  [minlen=0, style=invis];
"LHCb::UnpackRawEvent/UnpackRawEvent_UT_out_RawBankLocations" [fillcolor=coral1, label=RawBankLocations, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_UT" -> "LHCb::UnpackRawEvent/UnpackRawEvent_UT_out_RawBankLocations"  [minlen=0, style=invis];
}

"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" -> "LHCb::UnpackRawEvent/UnpackRawEvent_UT_in_RawEventLocation";
"UniqueIDGeneratorAlg/UniqueIDGeneratorAlg_26e527e9_out_Output" -> "VeloKalman/VeloKalman_bf73c006_in_UniqueIDGenerator";
subgraph "cluster_UniqueIDGeneratorAlg/UniqueIDGeneratorAlg_26e527e9" {
bgcolor=aliceblue;
label="";
"UniqueIDGeneratorAlg/UniqueIDGeneratorAlg_26e527e9" [label=<<B>UniqueIDGeneratorAlg/UniqueIDGeneratorAlg_26e527e9</B><BR/>defaults-only>, shape=plaintext];
"UniqueIDGeneratorAlg/UniqueIDGeneratorAlg_26e527e9_out_Output" [fillcolor=coral1, label=Output, style=filled];
"UniqueIDGeneratorAlg/UniqueIDGeneratorAlg_26e527e9" -> "UniqueIDGeneratorAlg/UniqueIDGeneratorAlg_26e527e9_out_Output"  [minlen=0, style=invis];
}

"MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4_out_OutputMuonPID" -> "MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89_in_Input2";
subgraph "cluster_MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4" {
bgcolor=aliceblue;
label="";
"MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4" [label=<<B>MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4</B><BR/>runMVA = False>, shape=plaintext];
"MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4_in_InputTracks" [fillcolor=deepskyblue1, label=InputTracks, style=filled];
"MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4" -> "MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4_in_InputTracks"  [minlen=0, style=invis];
"MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4_in_InputMuonHits" [fillcolor=deepskyblue1, label=InputMuonHits, style=filled];
"MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4" -> "MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4_in_InputMuonHits"  [minlen=0, style=invis];
"MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4_out_OutputMuonPID" [fillcolor=coral1, label=OutputMuonPID, style=filled];
"MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4" -> "MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4_out_OutputMuonPID"  [minlen=0, style=invis];
}

"SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1_out_Output" -> "MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4_in_InputTracks";
"MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab_out_HitContainer" -> "MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4_in_InputMuonHits";
subgraph "cluster_MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab" {
bgcolor=aliceblue;
label="";
"MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab" [label=<<B>MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab</B><BR/>defaults-only>, shape=plaintext];
"MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab_in_RawBanks" [fillcolor=deepskyblue1, label=RawBanks, style=filled];
"MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab" -> "MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab_in_RawBanks"  [minlen=0, style=invis];
"MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab_in_ErrorRawBanks" [fillcolor=deepskyblue1, label=ErrorRawBanks, style=filled];
"MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab" -> "MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab_in_ErrorRawBanks"  [minlen=0, style=invis];
"MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab_out_HitContainer" [fillcolor=coral1, label=HitContainer, style=filled];
"MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab" -> "MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab_out_HitContainer"  [minlen=0, style=invis];
}

"LHCb::UnpackRawEvent/UnpackRawEvent_Muon_out_RawBankLocations" -> "MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab_in_RawBanks";
subgraph "cluster_LHCb::UnpackRawEvent/UnpackRawEvent_Muon" {
bgcolor=aliceblue;
label="";
"LHCb::UnpackRawEvent/UnpackRawEvent_Muon" [label=<<B>LHCb::UnpackRawEvent/UnpackRawEvent_Muon</B><BR/>BankTypes = [&#x27;Muon&#x27;]<BR/>RawBankLocations = /Event/RawBanks/Muon>, shape=plaintext];
"LHCb::UnpackRawEvent/UnpackRawEvent_Muon_in_RawEventLocation" [fillcolor=deepskyblue1, label=RawEventLocation, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_Muon" -> "LHCb::UnpackRawEvent/UnpackRawEvent_Muon_in_RawEventLocation"  [minlen=0, style=invis];
"LHCb::UnpackRawEvent/UnpackRawEvent_Muon_out_RawBankLocations" [fillcolor=coral1, label=RawBankLocations, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_Muon" -> "LHCb::UnpackRawEvent/UnpackRawEvent_Muon_out_RawBankLocations"  [minlen=0, style=invis];
}

"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" -> "LHCb::UnpackRawEvent/UnpackRawEvent_Muon_in_RawEventLocation";
"LHCb::UnpackRawEvent/UnpackRawEvent_MuonError_out_RawBankLocations" -> "MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab_in_ErrorRawBanks";
subgraph "cluster_LHCb::UnpackRawEvent/UnpackRawEvent_MuonError" {
bgcolor=aliceblue;
label="";
"LHCb::UnpackRawEvent/UnpackRawEvent_MuonError" [label=<<B>LHCb::UnpackRawEvent/UnpackRawEvent_MuonError</B><BR/>BankTypes = [&#x27;MuonError&#x27;]<BR/>RawBankLocations = /Event/RawBanks/MuonError>, shape=plaintext];
"LHCb::UnpackRawEvent/UnpackRawEvent_MuonError_in_RawEventLocation" [fillcolor=deepskyblue1, label=RawEventLocation, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_MuonError" -> "LHCb::UnpackRawEvent/UnpackRawEvent_MuonError_in_RawEventLocation"  [minlen=0, style=invis];
"LHCb::UnpackRawEvent/UnpackRawEvent_MuonError_out_RawBankLocations" [fillcolor=coral1, label=RawBankLocations, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_MuonError" -> "LHCb::UnpackRawEvent/UnpackRawEvent_MuonError_out_RawBankLocations"  [minlen=0, style=invis];
}

"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" -> "LHCb::UnpackRawEvent/UnpackRawEvent_MuonError_in_RawEventLocation";
"TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_out_OutputVertices" -> "PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1c05ae75_in_Cut_PyConfDataDependencies";
subgraph "cluster_TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c" {
bgcolor=aliceblue;
label="";
"TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c" [label=<<B>TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c</B><BR/>MinZ = -600.0>, shape=plaintext];
"TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_in_TracksLocation" [fillcolor=deepskyblue1, label=TracksLocation, style=filled];
"TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c" -> "TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_in_TracksLocation"  [minlen=0, style=invis];
"TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_in_TracksBackwardLocation" [fillcolor=deepskyblue1, label=TracksBackwardLocation, style=filled];
"TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c" -> "TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_in_TracksBackwardLocation"  [minlen=0, style=invis];
"TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_out_OutputVertices" [fillcolor=coral1, label=OutputVertices, style=filled];
"TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c" -> "TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_out_OutputVertices"  [minlen=0, style=invis];
}

"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksLocation" -> "TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_in_TracksLocation";
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksBackwardLocation" -> "TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_in_TracksBackwardLocation";
"fromV3TrackWithMuonIDV1TrackVector/fromV3TrackWithMuonIDV1TrackVector_d3513f5e_out_OutputTracks" -> "LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex_fb2b99ce_in_ConvertedTracks";
subgraph "cluster_fromV3TrackWithMuonIDV1TrackVector/fromV3TrackWithMuonIDV1TrackVector_d3513f5e" {
bgcolor=aliceblue;
label="";
"fromV3TrackWithMuonIDV1TrackVector/fromV3TrackWithMuonIDV1TrackVector_d3513f5e" [label=<<B>fromV3TrackWithMuonIDV1TrackVector/fromV3TrackWithMuonIDV1TrackVector_d3513f5e</B><BR/>defaults-only>, shape=plaintext];
"fromV3TrackWithMuonIDV1TrackVector/fromV3TrackWithMuonIDV1TrackVector_d3513f5e_in_InputTracks" [fillcolor=deepskyblue1, label=InputTracks, style=filled];
"fromV3TrackWithMuonIDV1TrackVector/fromV3TrackWithMuonIDV1TrackVector_d3513f5e" -> "fromV3TrackWithMuonIDV1TrackVector/fromV3TrackWithMuonIDV1TrackVector_d3513f5e_in_InputTracks"  [minlen=0, style=invis];
"fromV3TrackWithMuonIDV1TrackVector/fromV3TrackWithMuonIDV1TrackVector_d3513f5e_out_OutputTracks" [fillcolor=coral1, label=OutputTracks, style=filled];
"fromV3TrackWithMuonIDV1TrackVector/fromV3TrackWithMuonIDV1TrackVector_d3513f5e" -> "fromV3TrackWithMuonIDV1TrackVector/fromV3TrackWithMuonIDV1TrackVector_d3513f5e_out_OutputTracks"  [minlen=0, style=invis];
}

"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1c05ae75_out_Output" -> "fromV3TrackWithMuonIDV1TrackVector/fromV3TrackWithMuonIDV1TrackVector_d3513f5e_in_InputTracks";
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_385ff72d_out_Output" -> "LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex_fb2b99ce_in_InputComposites";
subgraph "cluster_CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_385ff72d" {
bgcolor=aliceblue;
label="";
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_385ff72d" [label=<<B>CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_385ff72d</B><BR/>AssumedMass = mu+<BR/>CombinationCut = ( ( MAXSDOCA &lt; 0.2 ) &amp; ( MAXSDOCACHI2 &lt; 25.0 ) )<BR/>VertexCut = ( ( ( VALUE_OR(Value=nan) @ _CHI2DOF ) &lt; 25.0 ) &amp; ( MASS &gt; 0.0 ) )>, shape=plaintext];
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_385ff72d_in_InputUniqueIDGenerator" [fillcolor=deepskyblue1, label=InputUniqueIDGenerator, style=filled];
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_385ff72d" -> "CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_385ff72d_in_InputUniqueIDGenerator"  [minlen=0, style=invis];
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_385ff72d_in_InputTracks" [fillcolor=deepskyblue1, label=InputTracks, style=filled];
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_385ff72d" -> "CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_385ff72d_in_InputTracks"  [minlen=0, style=invis];
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_385ff72d_in_CombinationCut_PyConfDataDependencies" [fillcolor=deepskyblue1, label=CombinationCut_PyConfDataDependencies, style=filled];
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_385ff72d" -> "CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_385ff72d_in_CombinationCut_PyConfDataDependencies"  [minlen=0, style=invis];
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_385ff72d_in_VertexCut_PyConfDataDependencies" [fillcolor=deepskyblue1, label=VertexCut_PyConfDataDependencies, style=filled];
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_385ff72d" -> "CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_385ff72d_in_VertexCut_PyConfDataDependencies"  [minlen=0, style=invis];
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_385ff72d_out_Output" [fillcolor=coral1, label=Output, style=filled];
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_385ff72d" -> "CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_385ff72d_out_Output"  [minlen=0, style=invis];
}

"UniqueIDGeneratorAlg/UniqueIDGeneratorAlg_26e527e9_out_Output" -> "CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_385ff72d_in_InputUniqueIDGenerator";
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1c05ae75_out_Output" -> "CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_385ff72d_in_InputTracks";
subgraph "cluster_DeterministicPrescaler/Hlt1LowPtDiMuon_Prescaler" {
bgcolor=aliceblue;
label="";
"DeterministicPrescaler/Hlt1LowPtDiMuon_Prescaler" [label=<<B>DeterministicPrescaler/Hlt1LowPtDiMuon_Prescaler</B><BR/>AcceptFraction = 1.0<BR/>SeedName = Hlt1LowPtDiMuonPrescaler>, shape=plaintext];
"DeterministicPrescaler/Hlt1LowPtDiMuon_Prescaler_in_ODINLocation" [fillcolor=deepskyblue1, label=ODINLocation, style=filled];
"DeterministicPrescaler/Hlt1LowPtDiMuon_Prescaler" -> "DeterministicPrescaler/Hlt1LowPtDiMuon_Prescaler_in_ODINLocation"  [minlen=0, style=invis];
}

"createODIN/Decode_ODIN_out_ODIN" -> "DeterministicPrescaler/Hlt1LowPtDiMuon_Prescaler_in_ODINLocation";
subgraph "cluster_createODIN/Decode_ODIN" {
bgcolor=aliceblue;
label="";
"createODIN/Decode_ODIN" [label=<<B>createODIN/Decode_ODIN</B><BR/>defaults-only>, shape=plaintext];
"createODIN/Decode_ODIN_in_RawBanks" [fillcolor=deepskyblue1, label=RawBanks, style=filled];
"createODIN/Decode_ODIN" -> "createODIN/Decode_ODIN_in_RawBanks"  [minlen=0, style=invis];
"createODIN/Decode_ODIN_out_ODIN" [fillcolor=coral1, label=ODIN, style=filled];
"createODIN/Decode_ODIN" -> "createODIN/Decode_ODIN_out_ODIN"  [minlen=0, style=invis];
}

"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_out_RawBankLocations" -> "createODIN/Decode_ODIN_in_RawBanks";
subgraph "cluster_LHCb::UnpackRawEvent/UnpackRawEvent_ODIN" {
bgcolor=aliceblue;
label="";
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN" [label=<<B>LHCb::UnpackRawEvent/UnpackRawEvent_ODIN</B><BR/>BankTypes = [&#x27;ODIN&#x27;]<BR/>RawBankLocations = /Event/RawBanks/ODIN>, shape=plaintext];
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_in_RawEventLocation" [fillcolor=deepskyblue1, label=RawEventLocation, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN" -> "LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_in_RawEventLocation"  [minlen=0, style=invis];
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_out_RawBankLocations" [fillcolor=coral1, label=RawBankLocations, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN" -> "LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_out_RawBankLocations"  [minlen=0, style=invis];
}

"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" -> "LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_in_RawEventLocation";
subgraph "cluster_Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent" {
bgcolor=aliceblue;
label="";
"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent" [label=<<B>Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent</B><BR/>Output = /Event/DAQ/RawEvent>, shape=plaintext];
"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" [fillcolor=coral1, label=Output, style=filled];
"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent" -> "Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output"  [minlen=0, style=invis];
}

subgraph "cluster_VoidFilter/require_twotracks" {
bgcolor=aliceblue;
label="";
"VoidFilter/require_twotracks" [label=<<B>VoidFilter/require_twotracks</B><BR/>Cut = ( ( SIZE_OF @ _TES(DataHandles=[DataHandle(&#x27;/Event[...] DataTypes=[&#x27;LHCb::Pr::Upstream::Tracks&#x27;]) ) &gt; 1 )>, shape=plaintext];
"VoidFilter/require_twotracks_in_Cut_PyConfDataDependencies" [fillcolor=deepskyblue1, label=Cut_PyConfDataDependencies, style=filled];
"VoidFilter/require_twotracks" -> "VoidFilter/require_twotracks_in_Cut_PyConfDataDependencies"  [minlen=0, style=invis];
}

"PrVeloUT/PrVeloUT_85dc03d9_out_OutputTracksName" -> "VoidFilter/require_twotracks_in_Cut_PyConfDataDependencies";
subgraph "cluster_PrVeloUT/PrVeloUT_85dc03d9" {
bgcolor=aliceblue;
label="";
"PrVeloUT/PrVeloUT_85dc03d9" [label=<<B>PrVeloUT/PrVeloUT_85dc03d9</B><BR/>MinPT = 80.0<BR/>MinPTFinal = 80.0>, shape=plaintext];
"PrVeloUT/PrVeloUT_85dc03d9_in_InputTracksName" [fillcolor=deepskyblue1, label=InputTracksName, style=filled];
"PrVeloUT/PrVeloUT_85dc03d9" -> "PrVeloUT/PrVeloUT_85dc03d9_in_InputTracksName"  [minlen=0, style=invis];
"PrVeloUT/PrVeloUT_85dc03d9_in_UTHits" [fillcolor=deepskyblue1, label=UTHits, style=filled];
"PrVeloUT/PrVeloUT_85dc03d9" -> "PrVeloUT/PrVeloUT_85dc03d9_in_UTHits"  [minlen=0, style=invis];
"PrVeloUT/PrVeloUT_85dc03d9_out_OutputTracksName" [fillcolor=coral1, label=OutputTracksName, style=filled];
"PrVeloUT/PrVeloUT_85dc03d9" -> "PrVeloUT/PrVeloUT_85dc03d9_out_OutputTracksName"  [minlen=0, style=invis];
}

"PrFilterIPSoA/PrFilterIPSoA_bae17090_out_Output" -> "PrVeloUT/PrVeloUT_85dc03d9_in_InputTracksName";
subgraph "cluster_PrFilterIPSoA/PrFilterIPSoA_bae17090" {
bgcolor=aliceblue;
label="";
"PrFilterIPSoA/PrFilterIPSoA_bae17090" [label=<<B>PrFilterIPSoA/PrFilterIPSoA_bae17090</B><BR/>IPcut = 0.1>, shape=plaintext];
"PrFilterIPSoA/PrFilterIPSoA_bae17090_in_Input" [fillcolor=deepskyblue1, label=Input, style=filled];
"PrFilterIPSoA/PrFilterIPSoA_bae17090" -> "PrFilterIPSoA/PrFilterIPSoA_bae17090_in_Input"  [minlen=0, style=invis];
"PrFilterIPSoA/PrFilterIPSoA_bae17090_in_InputVertices" [fillcolor=deepskyblue1, label=InputVertices, style=filled];
"PrFilterIPSoA/PrFilterIPSoA_bae17090" -> "PrFilterIPSoA/PrFilterIPSoA_bae17090_in_InputVertices"  [minlen=0, style=invis];
"PrFilterIPSoA/PrFilterIPSoA_bae17090_out_Output" [fillcolor=coral1, label=Output, style=filled];
"PrFilterIPSoA/PrFilterIPSoA_bae17090" -> "PrFilterIPSoA/PrFilterIPSoA_bae17090_out_Output"  [minlen=0, style=invis];
}

"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksLocation" -> "PrFilterIPSoA/PrFilterIPSoA_bae17090_in_Input";
subgraph "cluster_VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651" {
bgcolor=aliceblue;
label="";
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651" [label=<<B>VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651</B><BR/>SensorMasks = (False, False, False, False, False, False, False, [...], False, False, False, False, False, False, False)<BR/>MaxScatterSeeding = 0.1<BR/>MaxScatterForwarding = 0.1<BR/>MaxScatter3hits = 0.02<BR/>SkipForward = 1>, shape=plaintext];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_in_RawBanks" [fillcolor=deepskyblue1, label=RawBanks, style=filled];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651" -> "VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_in_RawBanks"  [minlen=0, style=invis];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksLocation" [fillcolor=coral1, label=TracksLocation, style=filled];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651" -> "VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksLocation"  [minlen=0, style=invis];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksBackwardLocation" [fillcolor=coral1, label=TracksBackwardLocation, style=filled];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651" -> "VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksBackwardLocation"  [minlen=0, style=invis];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_HitsLocation" [fillcolor=coral1, label=HitsLocation, style=filled];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651" -> "VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_HitsLocation"  [minlen=0, style=invis];
}

"LHCb::UnpackRawEvent/UnpackRawEvent_VP_out_RawBankLocations" -> "VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_in_RawBanks";
subgraph "cluster_LHCb::UnpackRawEvent/UnpackRawEvent_VP" {
bgcolor=aliceblue;
label="";
"LHCb::UnpackRawEvent/UnpackRawEvent_VP" [label=<<B>LHCb::UnpackRawEvent/UnpackRawEvent_VP</B><BR/>BankTypes = [&#x27;VP&#x27;]<BR/>RawBankLocations = /Event/RawBanks/VP>, shape=plaintext];
"LHCb::UnpackRawEvent/UnpackRawEvent_VP_in_RawEventLocation" [fillcolor=deepskyblue1, label=RawEventLocation, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_VP" -> "LHCb::UnpackRawEvent/UnpackRawEvent_VP_in_RawEventLocation"  [minlen=0, style=invis];
"LHCb::UnpackRawEvent/UnpackRawEvent_VP_out_RawBankLocations" [fillcolor=coral1, label=RawBankLocations, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_VP" -> "LHCb::UnpackRawEvent/UnpackRawEvent_VP_out_RawBankLocations"  [minlen=0, style=invis];
}

"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" -> "LHCb::UnpackRawEvent/UnpackRawEvent_VP_in_RawEventLocation";
subgraph "cluster_Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent" {
bgcolor=aliceblue;
label="";
"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent" [label=<<B>Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent</B><BR/>Output = /Event/DAQ/RawEvent>, shape=plaintext];
"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" [fillcolor=coral1, label=Output, style=filled];
"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent" -> "Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output"  [minlen=0, style=invis];
}

"TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_out_OutputVertices" -> "PrFilterIPSoA/PrFilterIPSoA_bae17090_in_InputVertices";
subgraph "cluster_TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c" {
bgcolor=aliceblue;
label="";
"TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c" [label=<<B>TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c</B><BR/>MinZ = -600.0>, shape=plaintext];
"TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_in_TracksLocation" [fillcolor=deepskyblue1, label=TracksLocation, style=filled];
"TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c" -> "TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_in_TracksLocation"  [minlen=0, style=invis];
"TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_in_TracksBackwardLocation" [fillcolor=deepskyblue1, label=TracksBackwardLocation, style=filled];
"TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c" -> "TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_in_TracksBackwardLocation"  [minlen=0, style=invis];
"TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_out_OutputVertices" [fillcolor=coral1, label=OutputVertices, style=filled];
"TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c" -> "TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_out_OutputVertices"  [minlen=0, style=invis];
}

"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksLocation" -> "TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_in_TracksLocation";
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksBackwardLocation" -> "TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_in_TracksBackwardLocation";
"PrStorePrUTHits/PrStorePrUTHits_df75b912_out_UTHitsLocation" -> "PrVeloUT/PrVeloUT_85dc03d9_in_UTHits";
subgraph "cluster_PrStorePrUTHits/PrStorePrUTHits_df75b912" {
bgcolor=aliceblue;
label="";
"PrStorePrUTHits/PrStorePrUTHits_df75b912" [label=<<B>PrStorePrUTHits/PrStorePrUTHits_df75b912</B><BR/>isCluster = True<BR/>positionMethod = GeoWeighting>, shape=plaintext];
"PrStorePrUTHits/PrStorePrUTHits_df75b912_in_RawBanks" [fillcolor=deepskyblue1, label=RawBanks, style=filled];
"PrStorePrUTHits/PrStorePrUTHits_df75b912" -> "PrStorePrUTHits/PrStorePrUTHits_df75b912_in_RawBanks"  [minlen=0, style=invis];
"PrStorePrUTHits/PrStorePrUTHits_df75b912_out_UTHitsLocation" [fillcolor=coral1, label=UTHitsLocation, style=filled];
"PrStorePrUTHits/PrStorePrUTHits_df75b912" -> "PrStorePrUTHits/PrStorePrUTHits_df75b912_out_UTHitsLocation"  [minlen=0, style=invis];
}

"LHCb::UnpackRawEvent/UnpackRawEvent_UT_out_RawBankLocations" -> "PrStorePrUTHits/PrStorePrUTHits_df75b912_in_RawBanks";
subgraph "cluster_LHCb::UnpackRawEvent/UnpackRawEvent_UT" {
bgcolor=aliceblue;
label="";
"LHCb::UnpackRawEvent/UnpackRawEvent_UT" [label=<<B>LHCb::UnpackRawEvent/UnpackRawEvent_UT</B><BR/>BankTypes = [&#x27;UT&#x27;]<BR/>RawBankLocations = /Event/RawBanks/UT>, shape=plaintext];
"LHCb::UnpackRawEvent/UnpackRawEvent_UT_in_RawEventLocation" [fillcolor=deepskyblue1, label=RawEventLocation, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_UT" -> "LHCb::UnpackRawEvent/UnpackRawEvent_UT_in_RawEventLocation"  [minlen=0, style=invis];
"LHCb::UnpackRawEvent/UnpackRawEvent_UT_out_RawBankLocations" [fillcolor=coral1, label=RawBankLocations, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_UT" -> "LHCb::UnpackRawEvent/UnpackRawEvent_UT_out_RawBankLocations"  [minlen=0, style=invis];
}

"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" -> "LHCb::UnpackRawEvent/UnpackRawEvent_UT_in_RawEventLocation";
subgraph "cluster_CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_23e81e73" {
bgcolor=aliceblue;
label="";
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_23e81e73" [label=<<B>CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_23e81e73</B><BR/>AssumedMass = mu+<BR/>CombinationCut = ( ( MAXSDOCA &lt; 0.2 ) &amp; ( MAXSDOCACHI2 &lt; 25.0 ) )<BR/>VertexCut = ( ( ( VALUE_OR(Value=nan) @ _CHI2DOF ) &lt; 25.0 ) &amp; ( MASS &gt; 220.0 ) )>, shape=plaintext];
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_23e81e73_in_InputUniqueIDGenerator" [fillcolor=deepskyblue1, label=InputUniqueIDGenerator, style=filled];
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_23e81e73" -> "CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_23e81e73_in_InputUniqueIDGenerator"  [minlen=0, style=invis];
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_23e81e73_in_InputTracks" [fillcolor=deepskyblue1, label=InputTracks, style=filled];
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_23e81e73" -> "CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_23e81e73_in_InputTracks"  [minlen=0, style=invis];
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_23e81e73_in_CombinationCut_PyConfDataDependencies" [fillcolor=deepskyblue1, label=CombinationCut_PyConfDataDependencies, style=filled];
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_23e81e73" -> "CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_23e81e73_in_CombinationCut_PyConfDataDependencies"  [minlen=0, style=invis];
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_23e81e73_in_VertexCut_PyConfDataDependencies" [fillcolor=deepskyblue1, label=VertexCut_PyConfDataDependencies, style=filled];
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_23e81e73" -> "CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_23e81e73_in_VertexCut_PyConfDataDependencies"  [minlen=0, style=invis];
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_23e81e73_out_Output" [fillcolor=coral1, label=Output, style=filled];
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_23e81e73" -> "CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_23e81e73_out_Output"  [minlen=0, style=invis];
}

"UniqueIDGeneratorAlg/UniqueIDGeneratorAlg_26e527e9_out_Output" -> "CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_23e81e73_in_InputUniqueIDGenerator";
subgraph "cluster_UniqueIDGeneratorAlg/UniqueIDGeneratorAlg_26e527e9" {
bgcolor=aliceblue;
label="";
"UniqueIDGeneratorAlg/UniqueIDGeneratorAlg_26e527e9" [label=<<B>UniqueIDGeneratorAlg/UniqueIDGeneratorAlg_26e527e9</B><BR/>defaults-only>, shape=plaintext];
"UniqueIDGeneratorAlg/UniqueIDGeneratorAlg_26e527e9_out_Output" [fillcolor=coral1, label=Output, style=filled];
"UniqueIDGeneratorAlg/UniqueIDGeneratorAlg_26e527e9" -> "UniqueIDGeneratorAlg/UniqueIDGeneratorAlg_26e527e9_out_Output"  [minlen=0, style=invis];
}

"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_621940e0_out_Output" -> "CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_23e81e73_in_InputTracks";
subgraph "cluster_PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_621940e0" {
bgcolor=aliceblue;
label="";
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_621940e0" [label=<<B>PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_621940e0</B><BR/>Cut = FILTER(Functor=( ISMUON &amp; ( ( MAGNITUDE @ THREEMOM[...] ( ( VALUE_OR(Value=nan) @ _CHI2DOF ) &lt; 100.0 ) ))>, shape=plaintext];
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_621940e0_in_Input" [fillcolor=deepskyblue1, label=Input, style=filled];
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_621940e0" -> "PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_621940e0_in_Input"  [minlen=0, style=invis];
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_621940e0_in_Cut_PyConfDataDependencies" [fillcolor=deepskyblue1, label=Cut_PyConfDataDependencies, style=filled];
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_621940e0" -> "PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_621940e0_in_Cut_PyConfDataDependencies"  [minlen=0, style=invis];
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_621940e0_out_OutputStorage" [fillcolor=coral1, label=OutputStorage, style=filled];
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_621940e0" -> "PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_621940e0_out_OutputStorage"  [minlen=0, style=invis];
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_621940e0_out_Output" [fillcolor=coral1, label=Output, style=filled];
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_621940e0" -> "PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_621940e0_out_Output"  [minlen=0, style=invis];
}

"MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_f17f3a7f_out_Output" -> "PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_621940e0_in_Input";
subgraph "cluster_MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_f17f3a7f" {
bgcolor=aliceblue;
label="";
"MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_f17f3a7f" [label=<<B>MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_f17f3a7f</B><BR/>defaults-only>, shape=plaintext];
"MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_f17f3a7f_in_Input1" [fillcolor=deepskyblue1, label=Input1, style=filled];
"MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_f17f3a7f" -> "MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_f17f3a7f_in_Input1"  [minlen=0, style=invis];
"MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_f17f3a7f_in_Input2" [fillcolor=deepskyblue1, label=Input2, style=filled];
"MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_f17f3a7f" -> "MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_f17f3a7f_in_Input2"  [minlen=0, style=invis];
"MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_f17f3a7f_out_Output" [fillcolor=coral1, label=Output, style=filled];
"MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_f17f3a7f" -> "MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_f17f3a7f_out_Output"  [minlen=0, style=invis];
}

"VeloKalman/VeloKalman_24423762_out_OutputTracksLocation" -> "MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_f17f3a7f_in_Input1";
subgraph "cluster_VeloKalman/VeloKalman_24423762" {
bgcolor=aliceblue;
label="";
"VeloKalman/VeloKalman_24423762" [label=<<B>VeloKalman/VeloKalman_24423762</B><BR/>defaults-only>, shape=plaintext];
"VeloKalman/VeloKalman_24423762_in_HitsLocation" [fillcolor=deepskyblue1, label=HitsLocation, style=filled];
"VeloKalman/VeloKalman_24423762" -> "VeloKalman/VeloKalman_24423762_in_HitsLocation"  [minlen=0, style=invis];
"VeloKalman/VeloKalman_24423762_in_TracksVPLocation" [fillcolor=deepskyblue1, label=TracksVPLocation, style=filled];
"VeloKalman/VeloKalman_24423762" -> "VeloKalman/VeloKalman_24423762_in_TracksVPLocation"  [minlen=0, style=invis];
"VeloKalman/VeloKalman_24423762_in_TracksFTLocation" [fillcolor=deepskyblue1, label=TracksFTLocation, style=filled];
"VeloKalman/VeloKalman_24423762" -> "VeloKalman/VeloKalman_24423762_in_TracksFTLocation"  [minlen=0, style=invis];
"VeloKalman/VeloKalman_24423762_in_UniqueIDGenerator" [fillcolor=deepskyblue1, label=UniqueIDGenerator, style=filled];
"VeloKalman/VeloKalman_24423762" -> "VeloKalman/VeloKalman_24423762_in_UniqueIDGenerator"  [minlen=0, style=invis];
"VeloKalman/VeloKalman_24423762_out_OutputTracksLocation" [fillcolor=coral1, label=OutputTracksLocation, style=filled];
"VeloKalman/VeloKalman_24423762" -> "VeloKalman/VeloKalman_24423762_out_OutputTracksLocation"  [minlen=0, style=invis];
}

"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_HitsLocation" -> "VeloKalman/VeloKalman_24423762_in_HitsLocation";
subgraph "cluster_VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651" {
bgcolor=aliceblue;
label="";
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651" [label=<<B>VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651</B><BR/>SensorMasks = (False, False, False, False, False, False, False, [...], False, False, False, False, False, False, False)<BR/>MaxScatterSeeding = 0.1<BR/>MaxScatterForwarding = 0.1<BR/>MaxScatter3hits = 0.02<BR/>SkipForward = 1>, shape=plaintext];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_in_RawBanks" [fillcolor=deepskyblue1, label=RawBanks, style=filled];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651" -> "VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_in_RawBanks"  [minlen=0, style=invis];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksLocation" [fillcolor=coral1, label=TracksLocation, style=filled];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651" -> "VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksLocation"  [minlen=0, style=invis];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksBackwardLocation" [fillcolor=coral1, label=TracksBackwardLocation, style=filled];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651" -> "VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksBackwardLocation"  [minlen=0, style=invis];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_HitsLocation" [fillcolor=coral1, label=HitsLocation, style=filled];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651" -> "VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_HitsLocation"  [minlen=0, style=invis];
}

"LHCb::UnpackRawEvent/UnpackRawEvent_VP_out_RawBankLocations" -> "VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_in_RawBanks";
subgraph "cluster_LHCb::UnpackRawEvent/UnpackRawEvent_VP" {
bgcolor=aliceblue;
label="";
"LHCb::UnpackRawEvent/UnpackRawEvent_VP" [label=<<B>LHCb::UnpackRawEvent/UnpackRawEvent_VP</B><BR/>BankTypes = [&#x27;VP&#x27;]<BR/>RawBankLocations = /Event/RawBanks/VP>, shape=plaintext];
"LHCb::UnpackRawEvent/UnpackRawEvent_VP_in_RawEventLocation" [fillcolor=deepskyblue1, label=RawEventLocation, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_VP" -> "LHCb::UnpackRawEvent/UnpackRawEvent_VP_in_RawEventLocation"  [minlen=0, style=invis];
"LHCb::UnpackRawEvent/UnpackRawEvent_VP_out_RawBankLocations" [fillcolor=coral1, label=RawBankLocations, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_VP" -> "LHCb::UnpackRawEvent/UnpackRawEvent_VP_out_RawBankLocations"  [minlen=0, style=invis];
}

"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" -> "LHCb::UnpackRawEvent/UnpackRawEvent_VP_in_RawEventLocation";
subgraph "cluster_Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent" {
bgcolor=aliceblue;
label="";
"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent" [label=<<B>Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent</B><BR/>Output = /Event/DAQ/RawEvent>, shape=plaintext];
"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" [fillcolor=coral1, label=Output, style=filled];
"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent" -> "Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output"  [minlen=0, style=invis];
}

"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksLocation" -> "VeloKalman/VeloKalman_24423762_in_TracksVPLocation";
"SciFiTrackForwarding/SciFiTrackForwarding_ad21e450_out_Output" -> "VeloKalman/VeloKalman_24423762_in_TracksFTLocation";
subgraph "cluster_SciFiTrackForwarding/SciFiTrackForwarding_ad21e450" {
bgcolor=aliceblue;
label="";
"SciFiTrackForwarding/SciFiTrackForwarding_ad21e450" [label=<<B>SciFiTrackForwarding/SciFiTrackForwarding_ad21e450</B><BR/>MinPt = 80.0>, shape=plaintext];
"SciFiTrackForwarding/SciFiTrackForwarding_ad21e450_in_HitsLocation" [fillcolor=deepskyblue1, label=HitsLocation, style=filled];
"SciFiTrackForwarding/SciFiTrackForwarding_ad21e450" -> "SciFiTrackForwarding/SciFiTrackForwarding_ad21e450_in_HitsLocation"  [minlen=0, style=invis];
"SciFiTrackForwarding/SciFiTrackForwarding_ad21e450_in_InputTracks" [fillcolor=deepskyblue1, label=InputTracks, style=filled];
"SciFiTrackForwarding/SciFiTrackForwarding_ad21e450" -> "SciFiTrackForwarding/SciFiTrackForwarding_ad21e450_in_InputTracks"  [minlen=0, style=invis];
"SciFiTrackForwarding/SciFiTrackForwarding_ad21e450_out_Output" [fillcolor=coral1, label=Output, style=filled];
"SciFiTrackForwarding/SciFiTrackForwarding_ad21e450" -> "SciFiTrackForwarding/SciFiTrackForwarding_ad21e450_out_Output"  [minlen=0, style=invis];
}

"SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19_out_Output" -> "SciFiTrackForwarding/SciFiTrackForwarding_ad21e450_in_HitsLocation";
subgraph "cluster_SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19" {
bgcolor=aliceblue;
label="";
"SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19" [label=<<B>SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19</B><BR/>defaults-only>, shape=plaintext];
"SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19_in_HitsLocation" [fillcolor=deepskyblue1, label=HitsLocation, style=filled];
"SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19" -> "SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19_in_HitsLocation"  [minlen=0, style=invis];
"SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19_out_Output" [fillcolor=coral1, label=Output, style=filled];
"SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19" -> "SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19_out_Output"  [minlen=0, style=invis];
}

"FTRawBankDecoder/FTRawBankDecoder_out_OutputLocation" -> "SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19_in_HitsLocation";
subgraph "cluster_FTRawBankDecoder/FTRawBankDecoder" {
bgcolor=aliceblue;
label="";
"FTRawBankDecoder/FTRawBankDecoder" [label=<<B>FTRawBankDecoder/FTRawBankDecoder</B><BR/>defaults-only>, shape=plaintext];
"FTRawBankDecoder/FTRawBankDecoder_in_Odin" [fillcolor=deepskyblue1, label=Odin, style=filled];
"FTRawBankDecoder/FTRawBankDecoder" -> "FTRawBankDecoder/FTRawBankDecoder_in_Odin"  [minlen=0, style=invis];
"FTRawBankDecoder/FTRawBankDecoder_in_RawBanks" [fillcolor=deepskyblue1, label=RawBanks, style=filled];
"FTRawBankDecoder/FTRawBankDecoder" -> "FTRawBankDecoder/FTRawBankDecoder_in_RawBanks"  [minlen=0, style=invis];
"FTRawBankDecoder/FTRawBankDecoder_out_OutputLocation" [fillcolor=coral1, label=OutputLocation, style=filled];
"FTRawBankDecoder/FTRawBankDecoder" -> "FTRawBankDecoder/FTRawBankDecoder_out_OutputLocation"  [minlen=0, style=invis];
}

"createODIN/Decode_ODIN_out_ODIN" -> "FTRawBankDecoder/FTRawBankDecoder_in_Odin";
subgraph "cluster_createODIN/Decode_ODIN" {
bgcolor=aliceblue;
label="";
"createODIN/Decode_ODIN" [label=<<B>createODIN/Decode_ODIN</B><BR/>defaults-only>, shape=plaintext];
"createODIN/Decode_ODIN_in_RawBanks" [fillcolor=deepskyblue1, label=RawBanks, style=filled];
"createODIN/Decode_ODIN" -> "createODIN/Decode_ODIN_in_RawBanks"  [minlen=0, style=invis];
"createODIN/Decode_ODIN_out_ODIN" [fillcolor=coral1, label=ODIN, style=filled];
"createODIN/Decode_ODIN" -> "createODIN/Decode_ODIN_out_ODIN"  [minlen=0, style=invis];
}

"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_out_RawBankLocations" -> "createODIN/Decode_ODIN_in_RawBanks";
subgraph "cluster_LHCb::UnpackRawEvent/UnpackRawEvent_ODIN" {
bgcolor=aliceblue;
label="";
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN" [label=<<B>LHCb::UnpackRawEvent/UnpackRawEvent_ODIN</B><BR/>BankTypes = [&#x27;ODIN&#x27;]<BR/>RawBankLocations = /Event/RawBanks/ODIN>, shape=plaintext];
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_in_RawEventLocation" [fillcolor=deepskyblue1, label=RawEventLocation, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN" -> "LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_in_RawEventLocation"  [minlen=0, style=invis];
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_out_RawBankLocations" [fillcolor=coral1, label=RawBankLocations, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN" -> "LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_out_RawBankLocations"  [minlen=0, style=invis];
}

"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" -> "LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_in_RawEventLocation";
"LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster_out_RawBankLocations" -> "FTRawBankDecoder/FTRawBankDecoder_in_RawBanks";
subgraph "cluster_LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster" {
bgcolor=aliceblue;
label="";
"LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster" [label=<<B>LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster</B><BR/>BankTypes = [&#x27;FTCluster&#x27;]<BR/>RawBankLocations = /Event/RawBanks/FTCluster>, shape=plaintext];
"LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster_in_RawEventLocation" [fillcolor=deepskyblue1, label=RawEventLocation, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster" -> "LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster_in_RawEventLocation"  [minlen=0, style=invis];
"LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster_out_RawBankLocations" [fillcolor=coral1, label=RawBankLocations, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster" -> "LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster_out_RawBankLocations"  [minlen=0, style=invis];
}

"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" -> "LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster_in_RawEventLocation";
"MuonMatchVeloUTSoA/MuonMatchVeloUTSoA_42038f4f_out_OutputTracks" -> "SciFiTrackForwarding/SciFiTrackForwarding_ad21e450_in_InputTracks";
subgraph "cluster_MuonMatchVeloUTSoA/MuonMatchVeloUTSoA_42038f4f" {
bgcolor=aliceblue;
label="";
"MuonMatchVeloUTSoA/MuonMatchVeloUTSoA_42038f4f" [label=<<B>MuonMatchVeloUTSoA/MuonMatchVeloUTSoA_42038f4f</B><BR/>defaults-only>, shape=plaintext];
"MuonMatchVeloUTSoA/MuonMatchVeloUTSoA_42038f4f_in_InputTracks" [fillcolor=deepskyblue1, label=InputTracks, style=filled];
"MuonMatchVeloUTSoA/MuonMatchVeloUTSoA_42038f4f" -> "MuonMatchVeloUTSoA/MuonMatchVeloUTSoA_42038f4f_in_InputTracks"  [minlen=0, style=invis];
"MuonMatchVeloUTSoA/MuonMatchVeloUTSoA_42038f4f_in_InputMuonHits" [fillcolor=deepskyblue1, label=InputMuonHits, style=filled];
"MuonMatchVeloUTSoA/MuonMatchVeloUTSoA_42038f4f" -> "MuonMatchVeloUTSoA/MuonMatchVeloUTSoA_42038f4f_in_InputMuonHits"  [minlen=0, style=invis];
"MuonMatchVeloUTSoA/MuonMatchVeloUTSoA_42038f4f_out_OutputTracks" [fillcolor=coral1, label=OutputTracks, style=filled];
"MuonMatchVeloUTSoA/MuonMatchVeloUTSoA_42038f4f" -> "MuonMatchVeloUTSoA/MuonMatchVeloUTSoA_42038f4f_out_OutputTracks"  [minlen=0, style=invis];
}

"PrVeloUT/PrVeloUT_85dc03d9_out_OutputTracksName" -> "MuonMatchVeloUTSoA/MuonMatchVeloUTSoA_42038f4f_in_InputTracks";
subgraph "cluster_PrVeloUT/PrVeloUT_85dc03d9" {
bgcolor=aliceblue;
label="";
"PrVeloUT/PrVeloUT_85dc03d9" [label=<<B>PrVeloUT/PrVeloUT_85dc03d9</B><BR/>MinPT = 80.0<BR/>MinPTFinal = 80.0>, shape=plaintext];
"PrVeloUT/PrVeloUT_85dc03d9_in_InputTracksName" [fillcolor=deepskyblue1, label=InputTracksName, style=filled];
"PrVeloUT/PrVeloUT_85dc03d9" -> "PrVeloUT/PrVeloUT_85dc03d9_in_InputTracksName"  [minlen=0, style=invis];
"PrVeloUT/PrVeloUT_85dc03d9_in_UTHits" [fillcolor=deepskyblue1, label=UTHits, style=filled];
"PrVeloUT/PrVeloUT_85dc03d9" -> "PrVeloUT/PrVeloUT_85dc03d9_in_UTHits"  [minlen=0, style=invis];
"PrVeloUT/PrVeloUT_85dc03d9_out_OutputTracksName" [fillcolor=coral1, label=OutputTracksName, style=filled];
"PrVeloUT/PrVeloUT_85dc03d9" -> "PrVeloUT/PrVeloUT_85dc03d9_out_OutputTracksName"  [minlen=0, style=invis];
}

"PrFilterIPSoA/PrFilterIPSoA_bae17090_out_Output" -> "PrVeloUT/PrVeloUT_85dc03d9_in_InputTracksName";
subgraph "cluster_PrFilterIPSoA/PrFilterIPSoA_bae17090" {
bgcolor=aliceblue;
label="";
"PrFilterIPSoA/PrFilterIPSoA_bae17090" [label=<<B>PrFilterIPSoA/PrFilterIPSoA_bae17090</B><BR/>IPcut = 0.1>, shape=plaintext];
"PrFilterIPSoA/PrFilterIPSoA_bae17090_in_Input" [fillcolor=deepskyblue1, label=Input, style=filled];
"PrFilterIPSoA/PrFilterIPSoA_bae17090" -> "PrFilterIPSoA/PrFilterIPSoA_bae17090_in_Input"  [minlen=0, style=invis];
"PrFilterIPSoA/PrFilterIPSoA_bae17090_in_InputVertices" [fillcolor=deepskyblue1, label=InputVertices, style=filled];
"PrFilterIPSoA/PrFilterIPSoA_bae17090" -> "PrFilterIPSoA/PrFilterIPSoA_bae17090_in_InputVertices"  [minlen=0, style=invis];
"PrFilterIPSoA/PrFilterIPSoA_bae17090_out_Output" [fillcolor=coral1, label=Output, style=filled];
"PrFilterIPSoA/PrFilterIPSoA_bae17090" -> "PrFilterIPSoA/PrFilterIPSoA_bae17090_out_Output"  [minlen=0, style=invis];
}

"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksLocation" -> "PrFilterIPSoA/PrFilterIPSoA_bae17090_in_Input";
"TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_out_OutputVertices" -> "PrFilterIPSoA/PrFilterIPSoA_bae17090_in_InputVertices";
subgraph "cluster_TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c" {
bgcolor=aliceblue;
label="";
"TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c" [label=<<B>TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c</B><BR/>MinZ = -600.0>, shape=plaintext];
"TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_in_TracksLocation" [fillcolor=deepskyblue1, label=TracksLocation, style=filled];
"TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c" -> "TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_in_TracksLocation"  [minlen=0, style=invis];
"TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_in_TracksBackwardLocation" [fillcolor=deepskyblue1, label=TracksBackwardLocation, style=filled];
"TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c" -> "TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_in_TracksBackwardLocation"  [minlen=0, style=invis];
"TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_out_OutputVertices" [fillcolor=coral1, label=OutputVertices, style=filled];
"TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c" -> "TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_out_OutputVertices"  [minlen=0, style=invis];
}

"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksLocation" -> "TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_in_TracksLocation";
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksBackwardLocation" -> "TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_in_TracksBackwardLocation";
"PrStorePrUTHits/PrStorePrUTHits_df75b912_out_UTHitsLocation" -> "PrVeloUT/PrVeloUT_85dc03d9_in_UTHits";
subgraph "cluster_PrStorePrUTHits/PrStorePrUTHits_df75b912" {
bgcolor=aliceblue;
label="";
"PrStorePrUTHits/PrStorePrUTHits_df75b912" [label=<<B>PrStorePrUTHits/PrStorePrUTHits_df75b912</B><BR/>isCluster = True<BR/>positionMethod = GeoWeighting>, shape=plaintext];
"PrStorePrUTHits/PrStorePrUTHits_df75b912_in_RawBanks" [fillcolor=deepskyblue1, label=RawBanks, style=filled];
"PrStorePrUTHits/PrStorePrUTHits_df75b912" -> "PrStorePrUTHits/PrStorePrUTHits_df75b912_in_RawBanks"  [minlen=0, style=invis];
"PrStorePrUTHits/PrStorePrUTHits_df75b912_out_UTHitsLocation" [fillcolor=coral1, label=UTHitsLocation, style=filled];
"PrStorePrUTHits/PrStorePrUTHits_df75b912" -> "PrStorePrUTHits/PrStorePrUTHits_df75b912_out_UTHitsLocation"  [minlen=0, style=invis];
}

"LHCb::UnpackRawEvent/UnpackRawEvent_UT_out_RawBankLocations" -> "PrStorePrUTHits/PrStorePrUTHits_df75b912_in_RawBanks";
subgraph "cluster_LHCb::UnpackRawEvent/UnpackRawEvent_UT" {
bgcolor=aliceblue;
label="";
"LHCb::UnpackRawEvent/UnpackRawEvent_UT" [label=<<B>LHCb::UnpackRawEvent/UnpackRawEvent_UT</B><BR/>BankTypes = [&#x27;UT&#x27;]<BR/>RawBankLocations = /Event/RawBanks/UT>, shape=plaintext];
"LHCb::UnpackRawEvent/UnpackRawEvent_UT_in_RawEventLocation" [fillcolor=deepskyblue1, label=RawEventLocation, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_UT" -> "LHCb::UnpackRawEvent/UnpackRawEvent_UT_in_RawEventLocation"  [minlen=0, style=invis];
"LHCb::UnpackRawEvent/UnpackRawEvent_UT_out_RawBankLocations" [fillcolor=coral1, label=RawBankLocations, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_UT" -> "LHCb::UnpackRawEvent/UnpackRawEvent_UT_out_RawBankLocations"  [minlen=0, style=invis];
}

"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" -> "LHCb::UnpackRawEvent/UnpackRawEvent_UT_in_RawEventLocation";
"MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab_out_HitContainer" -> "MuonMatchVeloUTSoA/MuonMatchVeloUTSoA_42038f4f_in_InputMuonHits";
subgraph "cluster_MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab" {
bgcolor=aliceblue;
label="";
"MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab" [label=<<B>MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab</B><BR/>defaults-only>, shape=plaintext];
"MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab_in_RawBanks" [fillcolor=deepskyblue1, label=RawBanks, style=filled];
"MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab" -> "MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab_in_RawBanks"  [minlen=0, style=invis];
"MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab_in_ErrorRawBanks" [fillcolor=deepskyblue1, label=ErrorRawBanks, style=filled];
"MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab" -> "MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab_in_ErrorRawBanks"  [minlen=0, style=invis];
"MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab_out_HitContainer" [fillcolor=coral1, label=HitContainer, style=filled];
"MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab" -> "MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab_out_HitContainer"  [minlen=0, style=invis];
}

"LHCb::UnpackRawEvent/UnpackRawEvent_Muon_out_RawBankLocations" -> "MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab_in_RawBanks";
subgraph "cluster_LHCb::UnpackRawEvent/UnpackRawEvent_Muon" {
bgcolor=aliceblue;
label="";
"LHCb::UnpackRawEvent/UnpackRawEvent_Muon" [label=<<B>LHCb::UnpackRawEvent/UnpackRawEvent_Muon</B><BR/>BankTypes = [&#x27;Muon&#x27;]<BR/>RawBankLocations = /Event/RawBanks/Muon>, shape=plaintext];
"LHCb::UnpackRawEvent/UnpackRawEvent_Muon_in_RawEventLocation" [fillcolor=deepskyblue1, label=RawEventLocation, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_Muon" -> "LHCb::UnpackRawEvent/UnpackRawEvent_Muon_in_RawEventLocation"  [minlen=0, style=invis];
"LHCb::UnpackRawEvent/UnpackRawEvent_Muon_out_RawBankLocations" [fillcolor=coral1, label=RawBankLocations, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_Muon" -> "LHCb::UnpackRawEvent/UnpackRawEvent_Muon_out_RawBankLocations"  [minlen=0, style=invis];
}

"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" -> "LHCb::UnpackRawEvent/UnpackRawEvent_Muon_in_RawEventLocation";
"LHCb::UnpackRawEvent/UnpackRawEvent_MuonError_out_RawBankLocations" -> "MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab_in_ErrorRawBanks";
subgraph "cluster_LHCb::UnpackRawEvent/UnpackRawEvent_MuonError" {
bgcolor=aliceblue;
label="";
"LHCb::UnpackRawEvent/UnpackRawEvent_MuonError" [label=<<B>LHCb::UnpackRawEvent/UnpackRawEvent_MuonError</B><BR/>BankTypes = [&#x27;MuonError&#x27;]<BR/>RawBankLocations = /Event/RawBanks/MuonError>, shape=plaintext];
"LHCb::UnpackRawEvent/UnpackRawEvent_MuonError_in_RawEventLocation" [fillcolor=deepskyblue1, label=RawEventLocation, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_MuonError" -> "LHCb::UnpackRawEvent/UnpackRawEvent_MuonError_in_RawEventLocation"  [minlen=0, style=invis];
"LHCb::UnpackRawEvent/UnpackRawEvent_MuonError_out_RawBankLocations" [fillcolor=coral1, label=RawBankLocations, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_MuonError" -> "LHCb::UnpackRawEvent/UnpackRawEvent_MuonError_out_RawBankLocations"  [minlen=0, style=invis];
}

"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" -> "LHCb::UnpackRawEvent/UnpackRawEvent_MuonError_in_RawEventLocation";
"UniqueIDGeneratorAlg/UniqueIDGeneratorAlg_26e527e9_out_Output" -> "VeloKalman/VeloKalman_24423762_in_UniqueIDGenerator";
"MuonIDHlt1Alg/MuonIDHlt1Alg_9d0a1a6c_out_OutputMuonPID" -> "MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_f17f3a7f_in_Input2";
subgraph "cluster_MuonIDHlt1Alg/MuonIDHlt1Alg_9d0a1a6c" {
bgcolor=aliceblue;
label="";
"MuonIDHlt1Alg/MuonIDHlt1Alg_9d0a1a6c" [label=<<B>MuonIDHlt1Alg/MuonIDHlt1Alg_9d0a1a6c</B><BR/>runMVA = False>, shape=plaintext];
"MuonIDHlt1Alg/MuonIDHlt1Alg_9d0a1a6c_in_InputTracks" [fillcolor=deepskyblue1, label=InputTracks, style=filled];
"MuonIDHlt1Alg/MuonIDHlt1Alg_9d0a1a6c" -> "MuonIDHlt1Alg/MuonIDHlt1Alg_9d0a1a6c_in_InputTracks"  [minlen=0, style=invis];
"MuonIDHlt1Alg/MuonIDHlt1Alg_9d0a1a6c_in_InputMuonHits" [fillcolor=deepskyblue1, label=InputMuonHits, style=filled];
"MuonIDHlt1Alg/MuonIDHlt1Alg_9d0a1a6c" -> "MuonIDHlt1Alg/MuonIDHlt1Alg_9d0a1a6c_in_InputMuonHits"  [minlen=0, style=invis];
"MuonIDHlt1Alg/MuonIDHlt1Alg_9d0a1a6c_out_OutputMuonPID" [fillcolor=coral1, label=OutputMuonPID, style=filled];
"MuonIDHlt1Alg/MuonIDHlt1Alg_9d0a1a6c" -> "MuonIDHlt1Alg/MuonIDHlt1Alg_9d0a1a6c_out_OutputMuonPID"  [minlen=0, style=invis];
}

"SciFiTrackForwarding/SciFiTrackForwarding_ad21e450_out_Output" -> "MuonIDHlt1Alg/MuonIDHlt1Alg_9d0a1a6c_in_InputTracks";
"MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab_out_HitContainer" -> "MuonIDHlt1Alg/MuonIDHlt1Alg_9d0a1a6c_in_InputMuonHits";
"TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_out_OutputVertices" -> "PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_621940e0_in_Cut_PyConfDataDependencies";
subgraph "cluster_LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex_3bb79c2c" {
bgcolor=aliceblue;
label="";
"LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex_3bb79c2c" [label=<<B>LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex_3bb79c2c</B><BR/>defaults-only>, shape=plaintext];
"LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex_3bb79c2c_in_TracksInVertices" [fillcolor=deepskyblue1, label=TracksInVertices, style=filled];
"LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex_3bb79c2c" -> "LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex_3bb79c2c_in_TracksInVertices"  [minlen=0, style=invis];
"LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex_3bb79c2c_in_ConvertedTracks" [fillcolor=deepskyblue1, label=ConvertedTracks, style=filled];
"LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex_3bb79c2c" -> "LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex_3bb79c2c_in_ConvertedTracks"  [minlen=0, style=invis];
"LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex_3bb79c2c_in_InputComposites" [fillcolor=deepskyblue1, label=InputComposites, style=filled];
"LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex_3bb79c2c" -> "LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex_3bb79c2c_in_InputComposites"  [minlen=0, style=invis];
"LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex_3bb79c2c_out_OutputVertices" [fillcolor=coral1, label=OutputVertices, style=filled];
"LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex_3bb79c2c" -> "LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex_3bb79c2c_out_OutputVertices"  [minlen=0, style=invis];
}

"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_621940e0_out_Output" -> "LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex_3bb79c2c_in_TracksInVertices";
subgraph "cluster_PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_621940e0" {
bgcolor=aliceblue;
label="";
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_621940e0" [label=<<B>PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_621940e0</B><BR/>Cut = FILTER(Functor=( ISMUON &amp; ( ( MAGNITUDE @ THREEMOM[...] ( ( VALUE_OR(Value=nan) @ _CHI2DOF ) &lt; 100.0 ) ))>, shape=plaintext];
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_621940e0_in_Input" [fillcolor=deepskyblue1, label=Input, style=filled];
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_621940e0" -> "PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_621940e0_in_Input"  [minlen=0, style=invis];
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_621940e0_in_Cut_PyConfDataDependencies" [fillcolor=deepskyblue1, label=Cut_PyConfDataDependencies, style=filled];
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_621940e0" -> "PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_621940e0_in_Cut_PyConfDataDependencies"  [minlen=0, style=invis];
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_621940e0_out_OutputStorage" [fillcolor=coral1, label=OutputStorage, style=filled];
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_621940e0" -> "PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_621940e0_out_OutputStorage"  [minlen=0, style=invis];
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_621940e0_out_Output" [fillcolor=coral1, label=Output, style=filled];
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_621940e0" -> "PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_621940e0_out_Output"  [minlen=0, style=invis];
}

"MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_f17f3a7f_out_Output" -> "PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_621940e0_in_Input";
subgraph "cluster_MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_f17f3a7f" {
bgcolor=aliceblue;
label="";
"MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_f17f3a7f" [label=<<B>MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_f17f3a7f</B><BR/>defaults-only>, shape=plaintext];
"MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_f17f3a7f_in_Input1" [fillcolor=deepskyblue1, label=Input1, style=filled];
"MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_f17f3a7f" -> "MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_f17f3a7f_in_Input1"  [minlen=0, style=invis];
"MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_f17f3a7f_in_Input2" [fillcolor=deepskyblue1, label=Input2, style=filled];
"MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_f17f3a7f" -> "MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_f17f3a7f_in_Input2"  [minlen=0, style=invis];
"MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_f17f3a7f_out_Output" [fillcolor=coral1, label=Output, style=filled];
"MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_f17f3a7f" -> "MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_f17f3a7f_out_Output"  [minlen=0, style=invis];
}

"VeloKalman/VeloKalman_24423762_out_OutputTracksLocation" -> "MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_f17f3a7f_in_Input1";
subgraph "cluster_VeloKalman/VeloKalman_24423762" {
bgcolor=aliceblue;
label="";
"VeloKalman/VeloKalman_24423762" [label=<<B>VeloKalman/VeloKalman_24423762</B><BR/>defaults-only>, shape=plaintext];
"VeloKalman/VeloKalman_24423762_in_HitsLocation" [fillcolor=deepskyblue1, label=HitsLocation, style=filled];
"VeloKalman/VeloKalman_24423762" -> "VeloKalman/VeloKalman_24423762_in_HitsLocation"  [minlen=0, style=invis];
"VeloKalman/VeloKalman_24423762_in_TracksVPLocation" [fillcolor=deepskyblue1, label=TracksVPLocation, style=filled];
"VeloKalman/VeloKalman_24423762" -> "VeloKalman/VeloKalman_24423762_in_TracksVPLocation"  [minlen=0, style=invis];
"VeloKalman/VeloKalman_24423762_in_TracksFTLocation" [fillcolor=deepskyblue1, label=TracksFTLocation, style=filled];
"VeloKalman/VeloKalman_24423762" -> "VeloKalman/VeloKalman_24423762_in_TracksFTLocation"  [minlen=0, style=invis];
"VeloKalman/VeloKalman_24423762_in_UniqueIDGenerator" [fillcolor=deepskyblue1, label=UniqueIDGenerator, style=filled];
"VeloKalman/VeloKalman_24423762" -> "VeloKalman/VeloKalman_24423762_in_UniqueIDGenerator"  [minlen=0, style=invis];
"VeloKalman/VeloKalman_24423762_out_OutputTracksLocation" [fillcolor=coral1, label=OutputTracksLocation, style=filled];
"VeloKalman/VeloKalman_24423762" -> "VeloKalman/VeloKalman_24423762_out_OutputTracksLocation"  [minlen=0, style=invis];
}

"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_HitsLocation" -> "VeloKalman/VeloKalman_24423762_in_HitsLocation";
subgraph "cluster_VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651" {
bgcolor=aliceblue;
label="";
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651" [label=<<B>VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651</B><BR/>SensorMasks = (False, False, False, False, False, False, False, [...], False, False, False, False, False, False, False)<BR/>MaxScatterSeeding = 0.1<BR/>MaxScatterForwarding = 0.1<BR/>MaxScatter3hits = 0.02<BR/>SkipForward = 1>, shape=plaintext];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_in_RawBanks" [fillcolor=deepskyblue1, label=RawBanks, style=filled];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651" -> "VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_in_RawBanks"  [minlen=0, style=invis];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksLocation" [fillcolor=coral1, label=TracksLocation, style=filled];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651" -> "VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksLocation"  [minlen=0, style=invis];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksBackwardLocation" [fillcolor=coral1, label=TracksBackwardLocation, style=filled];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651" -> "VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksBackwardLocation"  [minlen=0, style=invis];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_HitsLocation" [fillcolor=coral1, label=HitsLocation, style=filled];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651" -> "VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_HitsLocation"  [minlen=0, style=invis];
}

"LHCb::UnpackRawEvent/UnpackRawEvent_VP_out_RawBankLocations" -> "VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_in_RawBanks";
subgraph "cluster_LHCb::UnpackRawEvent/UnpackRawEvent_VP" {
bgcolor=aliceblue;
label="";
"LHCb::UnpackRawEvent/UnpackRawEvent_VP" [label=<<B>LHCb::UnpackRawEvent/UnpackRawEvent_VP</B><BR/>BankTypes = [&#x27;VP&#x27;]<BR/>RawBankLocations = /Event/RawBanks/VP>, shape=plaintext];
"LHCb::UnpackRawEvent/UnpackRawEvent_VP_in_RawEventLocation" [fillcolor=deepskyblue1, label=RawEventLocation, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_VP" -> "LHCb::UnpackRawEvent/UnpackRawEvent_VP_in_RawEventLocation"  [minlen=0, style=invis];
"LHCb::UnpackRawEvent/UnpackRawEvent_VP_out_RawBankLocations" [fillcolor=coral1, label=RawBankLocations, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_VP" -> "LHCb::UnpackRawEvent/UnpackRawEvent_VP_out_RawBankLocations"  [minlen=0, style=invis];
}

"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" -> "LHCb::UnpackRawEvent/UnpackRawEvent_VP_in_RawEventLocation";
subgraph "cluster_Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent" {
bgcolor=aliceblue;
label="";
"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent" [label=<<B>Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent</B><BR/>Output = /Event/DAQ/RawEvent>, shape=plaintext];
"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" [fillcolor=coral1, label=Output, style=filled];
"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent" -> "Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output"  [minlen=0, style=invis];
}

"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksLocation" -> "VeloKalman/VeloKalman_24423762_in_TracksVPLocation";
"SciFiTrackForwarding/SciFiTrackForwarding_ad21e450_out_Output" -> "VeloKalman/VeloKalman_24423762_in_TracksFTLocation";
subgraph "cluster_SciFiTrackForwarding/SciFiTrackForwarding_ad21e450" {
bgcolor=aliceblue;
label="";
"SciFiTrackForwarding/SciFiTrackForwarding_ad21e450" [label=<<B>SciFiTrackForwarding/SciFiTrackForwarding_ad21e450</B><BR/>MinPt = 80.0>, shape=plaintext];
"SciFiTrackForwarding/SciFiTrackForwarding_ad21e450_in_HitsLocation" [fillcolor=deepskyblue1, label=HitsLocation, style=filled];
"SciFiTrackForwarding/SciFiTrackForwarding_ad21e450" -> "SciFiTrackForwarding/SciFiTrackForwarding_ad21e450_in_HitsLocation"  [minlen=0, style=invis];
"SciFiTrackForwarding/SciFiTrackForwarding_ad21e450_in_InputTracks" [fillcolor=deepskyblue1, label=InputTracks, style=filled];
"SciFiTrackForwarding/SciFiTrackForwarding_ad21e450" -> "SciFiTrackForwarding/SciFiTrackForwarding_ad21e450_in_InputTracks"  [minlen=0, style=invis];
"SciFiTrackForwarding/SciFiTrackForwarding_ad21e450_out_Output" [fillcolor=coral1, label=Output, style=filled];
"SciFiTrackForwarding/SciFiTrackForwarding_ad21e450" -> "SciFiTrackForwarding/SciFiTrackForwarding_ad21e450_out_Output"  [minlen=0, style=invis];
}

"SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19_out_Output" -> "SciFiTrackForwarding/SciFiTrackForwarding_ad21e450_in_HitsLocation";
subgraph "cluster_SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19" {
bgcolor=aliceblue;
label="";
"SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19" [label=<<B>SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19</B><BR/>defaults-only>, shape=plaintext];
"SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19_in_HitsLocation" [fillcolor=deepskyblue1, label=HitsLocation, style=filled];
"SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19" -> "SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19_in_HitsLocation"  [minlen=0, style=invis];
"SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19_out_Output" [fillcolor=coral1, label=Output, style=filled];
"SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19" -> "SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19_out_Output"  [minlen=0, style=invis];
}

"FTRawBankDecoder/FTRawBankDecoder_out_OutputLocation" -> "SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19_in_HitsLocation";
subgraph "cluster_FTRawBankDecoder/FTRawBankDecoder" {
bgcolor=aliceblue;
label="";
"FTRawBankDecoder/FTRawBankDecoder" [label=<<B>FTRawBankDecoder/FTRawBankDecoder</B><BR/>defaults-only>, shape=plaintext];
"FTRawBankDecoder/FTRawBankDecoder_in_Odin" [fillcolor=deepskyblue1, label=Odin, style=filled];
"FTRawBankDecoder/FTRawBankDecoder" -> "FTRawBankDecoder/FTRawBankDecoder_in_Odin"  [minlen=0, style=invis];
"FTRawBankDecoder/FTRawBankDecoder_in_RawBanks" [fillcolor=deepskyblue1, label=RawBanks, style=filled];
"FTRawBankDecoder/FTRawBankDecoder" -> "FTRawBankDecoder/FTRawBankDecoder_in_RawBanks"  [minlen=0, style=invis];
"FTRawBankDecoder/FTRawBankDecoder_out_OutputLocation" [fillcolor=coral1, label=OutputLocation, style=filled];
"FTRawBankDecoder/FTRawBankDecoder" -> "FTRawBankDecoder/FTRawBankDecoder_out_OutputLocation"  [minlen=0, style=invis];
}

"createODIN/Decode_ODIN_out_ODIN" -> "FTRawBankDecoder/FTRawBankDecoder_in_Odin";
subgraph "cluster_createODIN/Decode_ODIN" {
bgcolor=aliceblue;
label="";
"createODIN/Decode_ODIN" [label=<<B>createODIN/Decode_ODIN</B><BR/>defaults-only>, shape=plaintext];
"createODIN/Decode_ODIN_in_RawBanks" [fillcolor=deepskyblue1, label=RawBanks, style=filled];
"createODIN/Decode_ODIN" -> "createODIN/Decode_ODIN_in_RawBanks"  [minlen=0, style=invis];
"createODIN/Decode_ODIN_out_ODIN" [fillcolor=coral1, label=ODIN, style=filled];
"createODIN/Decode_ODIN" -> "createODIN/Decode_ODIN_out_ODIN"  [minlen=0, style=invis];
}

"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_out_RawBankLocations" -> "createODIN/Decode_ODIN_in_RawBanks";
subgraph "cluster_LHCb::UnpackRawEvent/UnpackRawEvent_ODIN" {
bgcolor=aliceblue;
label="";
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN" [label=<<B>LHCb::UnpackRawEvent/UnpackRawEvent_ODIN</B><BR/>BankTypes = [&#x27;ODIN&#x27;]<BR/>RawBankLocations = /Event/RawBanks/ODIN>, shape=plaintext];
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_in_RawEventLocation" [fillcolor=deepskyblue1, label=RawEventLocation, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN" -> "LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_in_RawEventLocation"  [minlen=0, style=invis];
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_out_RawBankLocations" [fillcolor=coral1, label=RawBankLocations, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN" -> "LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_out_RawBankLocations"  [minlen=0, style=invis];
}

"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" -> "LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_in_RawEventLocation";
"LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster_out_RawBankLocations" -> "FTRawBankDecoder/FTRawBankDecoder_in_RawBanks";
subgraph "cluster_LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster" {
bgcolor=aliceblue;
label="";
"LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster" [label=<<B>LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster</B><BR/>BankTypes = [&#x27;FTCluster&#x27;]<BR/>RawBankLocations = /Event/RawBanks/FTCluster>, shape=plaintext];
"LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster_in_RawEventLocation" [fillcolor=deepskyblue1, label=RawEventLocation, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster" -> "LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster_in_RawEventLocation"  [minlen=0, style=invis];
"LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster_out_RawBankLocations" [fillcolor=coral1, label=RawBankLocations, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster" -> "LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster_out_RawBankLocations"  [minlen=0, style=invis];
}

"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" -> "LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster_in_RawEventLocation";
"MuonMatchVeloUTSoA/MuonMatchVeloUTSoA_42038f4f_out_OutputTracks" -> "SciFiTrackForwarding/SciFiTrackForwarding_ad21e450_in_InputTracks";
subgraph "cluster_MuonMatchVeloUTSoA/MuonMatchVeloUTSoA_42038f4f" {
bgcolor=aliceblue;
label="";
"MuonMatchVeloUTSoA/MuonMatchVeloUTSoA_42038f4f" [label=<<B>MuonMatchVeloUTSoA/MuonMatchVeloUTSoA_42038f4f</B><BR/>defaults-only>, shape=plaintext];
"MuonMatchVeloUTSoA/MuonMatchVeloUTSoA_42038f4f_in_InputTracks" [fillcolor=deepskyblue1, label=InputTracks, style=filled];
"MuonMatchVeloUTSoA/MuonMatchVeloUTSoA_42038f4f" -> "MuonMatchVeloUTSoA/MuonMatchVeloUTSoA_42038f4f_in_InputTracks"  [minlen=0, style=invis];
"MuonMatchVeloUTSoA/MuonMatchVeloUTSoA_42038f4f_in_InputMuonHits" [fillcolor=deepskyblue1, label=InputMuonHits, style=filled];
"MuonMatchVeloUTSoA/MuonMatchVeloUTSoA_42038f4f" -> "MuonMatchVeloUTSoA/MuonMatchVeloUTSoA_42038f4f_in_InputMuonHits"  [minlen=0, style=invis];
"MuonMatchVeloUTSoA/MuonMatchVeloUTSoA_42038f4f_out_OutputTracks" [fillcolor=coral1, label=OutputTracks, style=filled];
"MuonMatchVeloUTSoA/MuonMatchVeloUTSoA_42038f4f" -> "MuonMatchVeloUTSoA/MuonMatchVeloUTSoA_42038f4f_out_OutputTracks"  [minlen=0, style=invis];
}

"PrVeloUT/PrVeloUT_85dc03d9_out_OutputTracksName" -> "MuonMatchVeloUTSoA/MuonMatchVeloUTSoA_42038f4f_in_InputTracks";
subgraph "cluster_PrVeloUT/PrVeloUT_85dc03d9" {
bgcolor=aliceblue;
label="";
"PrVeloUT/PrVeloUT_85dc03d9" [label=<<B>PrVeloUT/PrVeloUT_85dc03d9</B><BR/>MinPT = 80.0<BR/>MinPTFinal = 80.0>, shape=plaintext];
"PrVeloUT/PrVeloUT_85dc03d9_in_InputTracksName" [fillcolor=deepskyblue1, label=InputTracksName, style=filled];
"PrVeloUT/PrVeloUT_85dc03d9" -> "PrVeloUT/PrVeloUT_85dc03d9_in_InputTracksName"  [minlen=0, style=invis];
"PrVeloUT/PrVeloUT_85dc03d9_in_UTHits" [fillcolor=deepskyblue1, label=UTHits, style=filled];
"PrVeloUT/PrVeloUT_85dc03d9" -> "PrVeloUT/PrVeloUT_85dc03d9_in_UTHits"  [minlen=0, style=invis];
"PrVeloUT/PrVeloUT_85dc03d9_out_OutputTracksName" [fillcolor=coral1, label=OutputTracksName, style=filled];
"PrVeloUT/PrVeloUT_85dc03d9" -> "PrVeloUT/PrVeloUT_85dc03d9_out_OutputTracksName"  [minlen=0, style=invis];
}

"PrFilterIPSoA/PrFilterIPSoA_bae17090_out_Output" -> "PrVeloUT/PrVeloUT_85dc03d9_in_InputTracksName";
subgraph "cluster_PrFilterIPSoA/PrFilterIPSoA_bae17090" {
bgcolor=aliceblue;
label="";
"PrFilterIPSoA/PrFilterIPSoA_bae17090" [label=<<B>PrFilterIPSoA/PrFilterIPSoA_bae17090</B><BR/>IPcut = 0.1>, shape=plaintext];
"PrFilterIPSoA/PrFilterIPSoA_bae17090_in_Input" [fillcolor=deepskyblue1, label=Input, style=filled];
"PrFilterIPSoA/PrFilterIPSoA_bae17090" -> "PrFilterIPSoA/PrFilterIPSoA_bae17090_in_Input"  [minlen=0, style=invis];
"PrFilterIPSoA/PrFilterIPSoA_bae17090_in_InputVertices" [fillcolor=deepskyblue1, label=InputVertices, style=filled];
"PrFilterIPSoA/PrFilterIPSoA_bae17090" -> "PrFilterIPSoA/PrFilterIPSoA_bae17090_in_InputVertices"  [minlen=0, style=invis];
"PrFilterIPSoA/PrFilterIPSoA_bae17090_out_Output" [fillcolor=coral1, label=Output, style=filled];
"PrFilterIPSoA/PrFilterIPSoA_bae17090" -> "PrFilterIPSoA/PrFilterIPSoA_bae17090_out_Output"  [minlen=0, style=invis];
}

"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksLocation" -> "PrFilterIPSoA/PrFilterIPSoA_bae17090_in_Input";
"TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_out_OutputVertices" -> "PrFilterIPSoA/PrFilterIPSoA_bae17090_in_InputVertices";
subgraph "cluster_TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c" {
bgcolor=aliceblue;
label="";
"TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c" [label=<<B>TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c</B><BR/>MinZ = -600.0>, shape=plaintext];
"TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_in_TracksLocation" [fillcolor=deepskyblue1, label=TracksLocation, style=filled];
"TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c" -> "TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_in_TracksLocation"  [minlen=0, style=invis];
"TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_in_TracksBackwardLocation" [fillcolor=deepskyblue1, label=TracksBackwardLocation, style=filled];
"TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c" -> "TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_in_TracksBackwardLocation"  [minlen=0, style=invis];
"TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_out_OutputVertices" [fillcolor=coral1, label=OutputVertices, style=filled];
"TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c" -> "TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_out_OutputVertices"  [minlen=0, style=invis];
}

"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksLocation" -> "TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_in_TracksLocation";
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksBackwardLocation" -> "TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_in_TracksBackwardLocation";
"PrStorePrUTHits/PrStorePrUTHits_df75b912_out_UTHitsLocation" -> "PrVeloUT/PrVeloUT_85dc03d9_in_UTHits";
subgraph "cluster_PrStorePrUTHits/PrStorePrUTHits_df75b912" {
bgcolor=aliceblue;
label="";
"PrStorePrUTHits/PrStorePrUTHits_df75b912" [label=<<B>PrStorePrUTHits/PrStorePrUTHits_df75b912</B><BR/>isCluster = True<BR/>positionMethod = GeoWeighting>, shape=plaintext];
"PrStorePrUTHits/PrStorePrUTHits_df75b912_in_RawBanks" [fillcolor=deepskyblue1, label=RawBanks, style=filled];
"PrStorePrUTHits/PrStorePrUTHits_df75b912" -> "PrStorePrUTHits/PrStorePrUTHits_df75b912_in_RawBanks"  [minlen=0, style=invis];
"PrStorePrUTHits/PrStorePrUTHits_df75b912_out_UTHitsLocation" [fillcolor=coral1, label=UTHitsLocation, style=filled];
"PrStorePrUTHits/PrStorePrUTHits_df75b912" -> "PrStorePrUTHits/PrStorePrUTHits_df75b912_out_UTHitsLocation"  [minlen=0, style=invis];
}

"LHCb::UnpackRawEvent/UnpackRawEvent_UT_out_RawBankLocations" -> "PrStorePrUTHits/PrStorePrUTHits_df75b912_in_RawBanks";
subgraph "cluster_LHCb::UnpackRawEvent/UnpackRawEvent_UT" {
bgcolor=aliceblue;
label="";
"LHCb::UnpackRawEvent/UnpackRawEvent_UT" [label=<<B>LHCb::UnpackRawEvent/UnpackRawEvent_UT</B><BR/>BankTypes = [&#x27;UT&#x27;]<BR/>RawBankLocations = /Event/RawBanks/UT>, shape=plaintext];
"LHCb::UnpackRawEvent/UnpackRawEvent_UT_in_RawEventLocation" [fillcolor=deepskyblue1, label=RawEventLocation, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_UT" -> "LHCb::UnpackRawEvent/UnpackRawEvent_UT_in_RawEventLocation"  [minlen=0, style=invis];
"LHCb::UnpackRawEvent/UnpackRawEvent_UT_out_RawBankLocations" [fillcolor=coral1, label=RawBankLocations, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_UT" -> "LHCb::UnpackRawEvent/UnpackRawEvent_UT_out_RawBankLocations"  [minlen=0, style=invis];
}

"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" -> "LHCb::UnpackRawEvent/UnpackRawEvent_UT_in_RawEventLocation";
"MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab_out_HitContainer" -> "MuonMatchVeloUTSoA/MuonMatchVeloUTSoA_42038f4f_in_InputMuonHits";
subgraph "cluster_MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab" {
bgcolor=aliceblue;
label="";
"MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab" [label=<<B>MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab</B><BR/>defaults-only>, shape=plaintext];
"MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab_in_RawBanks" [fillcolor=deepskyblue1, label=RawBanks, style=filled];
"MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab" -> "MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab_in_RawBanks"  [minlen=0, style=invis];
"MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab_in_ErrorRawBanks" [fillcolor=deepskyblue1, label=ErrorRawBanks, style=filled];
"MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab" -> "MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab_in_ErrorRawBanks"  [minlen=0, style=invis];
"MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab_out_HitContainer" [fillcolor=coral1, label=HitContainer, style=filled];
"MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab" -> "MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab_out_HitContainer"  [minlen=0, style=invis];
}

"LHCb::UnpackRawEvent/UnpackRawEvent_Muon_out_RawBankLocations" -> "MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab_in_RawBanks";
subgraph "cluster_LHCb::UnpackRawEvent/UnpackRawEvent_Muon" {
bgcolor=aliceblue;
label="";
"LHCb::UnpackRawEvent/UnpackRawEvent_Muon" [label=<<B>LHCb::UnpackRawEvent/UnpackRawEvent_Muon</B><BR/>BankTypes = [&#x27;Muon&#x27;]<BR/>RawBankLocations = /Event/RawBanks/Muon>, shape=plaintext];
"LHCb::UnpackRawEvent/UnpackRawEvent_Muon_in_RawEventLocation" [fillcolor=deepskyblue1, label=RawEventLocation, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_Muon" -> "LHCb::UnpackRawEvent/UnpackRawEvent_Muon_in_RawEventLocation"  [minlen=0, style=invis];
"LHCb::UnpackRawEvent/UnpackRawEvent_Muon_out_RawBankLocations" [fillcolor=coral1, label=RawBankLocations, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_Muon" -> "LHCb::UnpackRawEvent/UnpackRawEvent_Muon_out_RawBankLocations"  [minlen=0, style=invis];
}

"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" -> "LHCb::UnpackRawEvent/UnpackRawEvent_Muon_in_RawEventLocation";
"LHCb::UnpackRawEvent/UnpackRawEvent_MuonError_out_RawBankLocations" -> "MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab_in_ErrorRawBanks";
subgraph "cluster_LHCb::UnpackRawEvent/UnpackRawEvent_MuonError" {
bgcolor=aliceblue;
label="";
"LHCb::UnpackRawEvent/UnpackRawEvent_MuonError" [label=<<B>LHCb::UnpackRawEvent/UnpackRawEvent_MuonError</B><BR/>BankTypes = [&#x27;MuonError&#x27;]<BR/>RawBankLocations = /Event/RawBanks/MuonError>, shape=plaintext];
"LHCb::UnpackRawEvent/UnpackRawEvent_MuonError_in_RawEventLocation" [fillcolor=deepskyblue1, label=RawEventLocation, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_MuonError" -> "LHCb::UnpackRawEvent/UnpackRawEvent_MuonError_in_RawEventLocation"  [minlen=0, style=invis];
"LHCb::UnpackRawEvent/UnpackRawEvent_MuonError_out_RawBankLocations" [fillcolor=coral1, label=RawBankLocations, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_MuonError" -> "LHCb::UnpackRawEvent/UnpackRawEvent_MuonError_out_RawBankLocations"  [minlen=0, style=invis];
}

"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" -> "LHCb::UnpackRawEvent/UnpackRawEvent_MuonError_in_RawEventLocation";
"UniqueIDGeneratorAlg/UniqueIDGeneratorAlg_26e527e9_out_Output" -> "VeloKalman/VeloKalman_24423762_in_UniqueIDGenerator";
subgraph "cluster_UniqueIDGeneratorAlg/UniqueIDGeneratorAlg_26e527e9" {
bgcolor=aliceblue;
label="";
"UniqueIDGeneratorAlg/UniqueIDGeneratorAlg_26e527e9" [label=<<B>UniqueIDGeneratorAlg/UniqueIDGeneratorAlg_26e527e9</B><BR/>defaults-only>, shape=plaintext];
"UniqueIDGeneratorAlg/UniqueIDGeneratorAlg_26e527e9_out_Output" [fillcolor=coral1, label=Output, style=filled];
"UniqueIDGeneratorAlg/UniqueIDGeneratorAlg_26e527e9" -> "UniqueIDGeneratorAlg/UniqueIDGeneratorAlg_26e527e9_out_Output"  [minlen=0, style=invis];
}

"MuonIDHlt1Alg/MuonIDHlt1Alg_9d0a1a6c_out_OutputMuonPID" -> "MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_f17f3a7f_in_Input2";
subgraph "cluster_MuonIDHlt1Alg/MuonIDHlt1Alg_9d0a1a6c" {
bgcolor=aliceblue;
label="";
"MuonIDHlt1Alg/MuonIDHlt1Alg_9d0a1a6c" [label=<<B>MuonIDHlt1Alg/MuonIDHlt1Alg_9d0a1a6c</B><BR/>runMVA = False>, shape=plaintext];
"MuonIDHlt1Alg/MuonIDHlt1Alg_9d0a1a6c_in_InputTracks" [fillcolor=deepskyblue1, label=InputTracks, style=filled];
"MuonIDHlt1Alg/MuonIDHlt1Alg_9d0a1a6c" -> "MuonIDHlt1Alg/MuonIDHlt1Alg_9d0a1a6c_in_InputTracks"  [minlen=0, style=invis];
"MuonIDHlt1Alg/MuonIDHlt1Alg_9d0a1a6c_in_InputMuonHits" [fillcolor=deepskyblue1, label=InputMuonHits, style=filled];
"MuonIDHlt1Alg/MuonIDHlt1Alg_9d0a1a6c" -> "MuonIDHlt1Alg/MuonIDHlt1Alg_9d0a1a6c_in_InputMuonHits"  [minlen=0, style=invis];
"MuonIDHlt1Alg/MuonIDHlt1Alg_9d0a1a6c_out_OutputMuonPID" [fillcolor=coral1, label=OutputMuonPID, style=filled];
"MuonIDHlt1Alg/MuonIDHlt1Alg_9d0a1a6c" -> "MuonIDHlt1Alg/MuonIDHlt1Alg_9d0a1a6c_out_OutputMuonPID"  [minlen=0, style=invis];
}

"SciFiTrackForwarding/SciFiTrackForwarding_ad21e450_out_Output" -> "MuonIDHlt1Alg/MuonIDHlt1Alg_9d0a1a6c_in_InputTracks";
"MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab_out_HitContainer" -> "MuonIDHlt1Alg/MuonIDHlt1Alg_9d0a1a6c_in_InputMuonHits";
"TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_out_OutputVertices" -> "PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_621940e0_in_Cut_PyConfDataDependencies";
"fromV3TrackWithMuonIDV1TrackVector/fromV3TrackWithMuonIDV1TrackVector_966bd0da_out_OutputTracks" -> "LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex_3bb79c2c_in_ConvertedTracks";
subgraph "cluster_fromV3TrackWithMuonIDV1TrackVector/fromV3TrackWithMuonIDV1TrackVector_966bd0da" {
bgcolor=aliceblue;
label="";
"fromV3TrackWithMuonIDV1TrackVector/fromV3TrackWithMuonIDV1TrackVector_966bd0da" [label=<<B>fromV3TrackWithMuonIDV1TrackVector/fromV3TrackWithMuonIDV1TrackVector_966bd0da</B><BR/>defaults-only>, shape=plaintext];
"fromV3TrackWithMuonIDV1TrackVector/fromV3TrackWithMuonIDV1TrackVector_966bd0da_in_InputTracks" [fillcolor=deepskyblue1, label=InputTracks, style=filled];
"fromV3TrackWithMuonIDV1TrackVector/fromV3TrackWithMuonIDV1TrackVector_966bd0da" -> "fromV3TrackWithMuonIDV1TrackVector/fromV3TrackWithMuonIDV1TrackVector_966bd0da_in_InputTracks"  [minlen=0, style=invis];
"fromV3TrackWithMuonIDV1TrackVector/fromV3TrackWithMuonIDV1TrackVector_966bd0da_out_OutputTracks" [fillcolor=coral1, label=OutputTracks, style=filled];
"fromV3TrackWithMuonIDV1TrackVector/fromV3TrackWithMuonIDV1TrackVector_966bd0da" -> "fromV3TrackWithMuonIDV1TrackVector/fromV3TrackWithMuonIDV1TrackVector_966bd0da_out_OutputTracks"  [minlen=0, style=invis];
}

"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_621940e0_out_Output" -> "fromV3TrackWithMuonIDV1TrackVector/fromV3TrackWithMuonIDV1TrackVector_966bd0da_in_InputTracks";
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_23e81e73_out_Output" -> "LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex_3bb79c2c_in_InputComposites";
subgraph "cluster_CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_23e81e73" {
bgcolor=aliceblue;
label="";
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_23e81e73" [label=<<B>CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_23e81e73</B><BR/>AssumedMass = mu+<BR/>CombinationCut = ( ( MAXSDOCA &lt; 0.2 ) &amp; ( MAXSDOCACHI2 &lt; 25.0 ) )<BR/>VertexCut = ( ( ( VALUE_OR(Value=nan) @ _CHI2DOF ) &lt; 25.0 ) &amp; ( MASS &gt; 220.0 ) )>, shape=plaintext];
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_23e81e73_in_InputUniqueIDGenerator" [fillcolor=deepskyblue1, label=InputUniqueIDGenerator, style=filled];
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_23e81e73" -> "CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_23e81e73_in_InputUniqueIDGenerator"  [minlen=0, style=invis];
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_23e81e73_in_InputTracks" [fillcolor=deepskyblue1, label=InputTracks, style=filled];
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_23e81e73" -> "CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_23e81e73_in_InputTracks"  [minlen=0, style=invis];
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_23e81e73_in_CombinationCut_PyConfDataDependencies" [fillcolor=deepskyblue1, label=CombinationCut_PyConfDataDependencies, style=filled];
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_23e81e73" -> "CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_23e81e73_in_CombinationCut_PyConfDataDependencies"  [minlen=0, style=invis];
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_23e81e73_in_VertexCut_PyConfDataDependencies" [fillcolor=deepskyblue1, label=VertexCut_PyConfDataDependencies, style=filled];
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_23e81e73" -> "CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_23e81e73_in_VertexCut_PyConfDataDependencies"  [minlen=0, style=invis];
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_23e81e73_out_Output" [fillcolor=coral1, label=Output, style=filled];
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_23e81e73" -> "CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_23e81e73_out_Output"  [minlen=0, style=invis];
}

"UniqueIDGeneratorAlg/UniqueIDGeneratorAlg_26e527e9_out_Output" -> "CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_23e81e73_in_InputUniqueIDGenerator";
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_621940e0_out_Output" -> "CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_23e81e73_in_InputTracks";
subgraph "cluster_DeterministicPrescaler/Hlt1MicroBiasLowMultVelo_Prescaler" {
bgcolor=aliceblue;
label="";
"DeterministicPrescaler/Hlt1MicroBiasLowMultVelo_Prescaler" [label=<<B>DeterministicPrescaler/Hlt1MicroBiasLowMultVelo_Prescaler</B><BR/>AcceptFraction = 1.0<BR/>SeedName = Hlt1MicroBiasLowMultVeloPrescaler>, shape=plaintext];
"DeterministicPrescaler/Hlt1MicroBiasLowMultVelo_Prescaler_in_ODINLocation" [fillcolor=deepskyblue1, label=ODINLocation, style=filled];
"DeterministicPrescaler/Hlt1MicroBiasLowMultVelo_Prescaler" -> "DeterministicPrescaler/Hlt1MicroBiasLowMultVelo_Prescaler_in_ODINLocation"  [minlen=0, style=invis];
}

"createODIN/Decode_ODIN_out_ODIN" -> "DeterministicPrescaler/Hlt1MicroBiasLowMultVelo_Prescaler_in_ODINLocation";
subgraph "cluster_createODIN/Decode_ODIN" {
bgcolor=aliceblue;
label="";
"createODIN/Decode_ODIN" [label=<<B>createODIN/Decode_ODIN</B><BR/>defaults-only>, shape=plaintext];
"createODIN/Decode_ODIN_in_RawBanks" [fillcolor=deepskyblue1, label=RawBanks, style=filled];
"createODIN/Decode_ODIN" -> "createODIN/Decode_ODIN_in_RawBanks"  [minlen=0, style=invis];
"createODIN/Decode_ODIN_out_ODIN" [fillcolor=coral1, label=ODIN, style=filled];
"createODIN/Decode_ODIN" -> "createODIN/Decode_ODIN_out_ODIN"  [minlen=0, style=invis];
}

"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_out_RawBankLocations" -> "createODIN/Decode_ODIN_in_RawBanks";
subgraph "cluster_LHCb::UnpackRawEvent/UnpackRawEvent_ODIN" {
bgcolor=aliceblue;
label="";
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN" [label=<<B>LHCb::UnpackRawEvent/UnpackRawEvent_ODIN</B><BR/>BankTypes = [&#x27;ODIN&#x27;]<BR/>RawBankLocations = /Event/RawBanks/ODIN>, shape=plaintext];
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_in_RawEventLocation" [fillcolor=deepskyblue1, label=RawEventLocation, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN" -> "LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_in_RawEventLocation"  [minlen=0, style=invis];
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_out_RawBankLocations" [fillcolor=coral1, label=RawBankLocations, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN" -> "LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_out_RawBankLocations"  [minlen=0, style=invis];
}

"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" -> "LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_in_RawEventLocation";
subgraph "cluster_Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent" {
bgcolor=aliceblue;
label="";
"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent" [label=<<B>Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent</B><BR/>Output = /Event/DAQ/RawEvent>, shape=plaintext];
"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" [fillcolor=coral1, label=Output, style=filled];
"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent" -> "Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output"  [minlen=0, style=invis];
}

subgraph "cluster_VoidFilter/VoidFilter_25efcbe9" {
bgcolor=aliceblue;
label="";
"VoidFilter/VoidFilter_25efcbe9" [label=<<B>VoidFilter/VoidFilter_25efcbe9</B><BR/>Cut = ::Functors::math::test_bit( ( EVENTTYPE @ _TES(Dat[...]pes=[&#x27;LHCb::ODINImplementation::v7::ODIN&#x27;]) ), 4 )>, shape=plaintext];
"VoidFilter/VoidFilter_25efcbe9_in_Cut_PyConfDataDependencies" [fillcolor=deepskyblue1, label=Cut_PyConfDataDependencies, style=filled];
"VoidFilter/VoidFilter_25efcbe9" -> "VoidFilter/VoidFilter_25efcbe9_in_Cut_PyConfDataDependencies"  [minlen=0, style=invis];
}

"createODIN/Decode_ODIN_out_ODIN" -> "VoidFilter/VoidFilter_25efcbe9_in_Cut_PyConfDataDependencies";
subgraph "cluster_createODIN/Decode_ODIN" {
bgcolor=aliceblue;
label="";
"createODIN/Decode_ODIN" [label=<<B>createODIN/Decode_ODIN</B><BR/>defaults-only>, shape=plaintext];
"createODIN/Decode_ODIN_in_RawBanks" [fillcolor=deepskyblue1, label=RawBanks, style=filled];
"createODIN/Decode_ODIN" -> "createODIN/Decode_ODIN_in_RawBanks"  [minlen=0, style=invis];
"createODIN/Decode_ODIN_out_ODIN" [fillcolor=coral1, label=ODIN, style=filled];
"createODIN/Decode_ODIN" -> "createODIN/Decode_ODIN_out_ODIN"  [minlen=0, style=invis];
}

"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_out_RawBankLocations" -> "createODIN/Decode_ODIN_in_RawBanks";
subgraph "cluster_LHCb::UnpackRawEvent/UnpackRawEvent_ODIN" {
bgcolor=aliceblue;
label="";
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN" [label=<<B>LHCb::UnpackRawEvent/UnpackRawEvent_ODIN</B><BR/>BankTypes = [&#x27;ODIN&#x27;]<BR/>RawBankLocations = /Event/RawBanks/ODIN>, shape=plaintext];
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_in_RawEventLocation" [fillcolor=deepskyblue1, label=RawEventLocation, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN" -> "LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_in_RawEventLocation"  [minlen=0, style=invis];
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_out_RawBankLocations" [fillcolor=coral1, label=RawBankLocations, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN" -> "LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_out_RawBankLocations"  [minlen=0, style=invis];
}

"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" -> "LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_in_RawEventLocation";
subgraph "cluster_Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent" {
bgcolor=aliceblue;
label="";
"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent" [label=<<B>Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent</B><BR/>Output = /Event/DAQ/RawEvent>, shape=plaintext];
"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" [fillcolor=coral1, label=Output, style=filled];
"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent" -> "Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output"  [minlen=0, style=invis];
}

subgraph "cluster_VoidFilter/VoidFilter_230cad9b" {
bgcolor=aliceblue;
label="";
"VoidFilter/VoidFilter_230cad9b" [label=<<B>VoidFilter/VoidFilter_230cad9b</B><BR/>Cut = ( ( SIZE_OF @ _TES(DataHandles=[DataHandle(&#x27;/Event[...]&#x27;)], DataTypes=[&#x27;LHCb::Pr::Velo::Tracks&#x27;]) ) &gt; 5 )>, shape=plaintext];
"VoidFilter/VoidFilter_230cad9b_in_Cut_PyConfDataDependencies" [fillcolor=deepskyblue1, label=Cut_PyConfDataDependencies, style=filled];
"VoidFilter/VoidFilter_230cad9b" -> "VoidFilter/VoidFilter_230cad9b_in_Cut_PyConfDataDependencies"  [minlen=0, style=invis];
}

"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksLocation" -> "VoidFilter/VoidFilter_230cad9b_in_Cut_PyConfDataDependencies";
subgraph "cluster_VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651" {
bgcolor=aliceblue;
label="";
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651" [label=<<B>VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651</B><BR/>SensorMasks = (False, False, False, False, False, False, False, [...], False, False, False, False, False, False, False)<BR/>MaxScatterSeeding = 0.1<BR/>MaxScatterForwarding = 0.1<BR/>MaxScatter3hits = 0.02<BR/>SkipForward = 1>, shape=plaintext];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_in_RawBanks" [fillcolor=deepskyblue1, label=RawBanks, style=filled];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651" -> "VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_in_RawBanks"  [minlen=0, style=invis];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksLocation" [fillcolor=coral1, label=TracksLocation, style=filled];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651" -> "VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksLocation"  [minlen=0, style=invis];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksBackwardLocation" [fillcolor=coral1, label=TracksBackwardLocation, style=filled];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651" -> "VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksBackwardLocation"  [minlen=0, style=invis];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_HitsLocation" [fillcolor=coral1, label=HitsLocation, style=filled];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651" -> "VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_HitsLocation"  [minlen=0, style=invis];
}

"LHCb::UnpackRawEvent/UnpackRawEvent_VP_out_RawBankLocations" -> "VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_in_RawBanks";
subgraph "cluster_LHCb::UnpackRawEvent/UnpackRawEvent_VP" {
bgcolor=aliceblue;
label="";
"LHCb::UnpackRawEvent/UnpackRawEvent_VP" [label=<<B>LHCb::UnpackRawEvent/UnpackRawEvent_VP</B><BR/>BankTypes = [&#x27;VP&#x27;]<BR/>RawBankLocations = /Event/RawBanks/VP>, shape=plaintext];
"LHCb::UnpackRawEvent/UnpackRawEvent_VP_in_RawEventLocation" [fillcolor=deepskyblue1, label=RawEventLocation, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_VP" -> "LHCb::UnpackRawEvent/UnpackRawEvent_VP_in_RawEventLocation"  [minlen=0, style=invis];
"LHCb::UnpackRawEvent/UnpackRawEvent_VP_out_RawBankLocations" [fillcolor=coral1, label=RawBankLocations, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_VP" -> "LHCb::UnpackRawEvent/UnpackRawEvent_VP_out_RawBankLocations"  [minlen=0, style=invis];
}

"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" -> "LHCb::UnpackRawEvent/UnpackRawEvent_VP_in_RawEventLocation";
subgraph "cluster_Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent" {
bgcolor=aliceblue;
label="";
"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent" [label=<<B>Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent</B><BR/>Output = /Event/DAQ/RawEvent>, shape=plaintext];
"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" [fillcolor=coral1, label=Output, style=filled];
"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent" -> "Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output"  [minlen=0, style=invis];
}

subgraph "cluster_DeterministicPrescaler/Hlt1NoBias_Prescaler" {
bgcolor=aliceblue;
label="";
"DeterministicPrescaler/Hlt1NoBias_Prescaler" [label=<<B>DeterministicPrescaler/Hlt1NoBias_Prescaler</B><BR/>AcceptFraction = 1.0<BR/>SeedName = Hlt1NoBiasPrescaler>, shape=plaintext];
"DeterministicPrescaler/Hlt1NoBias_Prescaler_in_ODINLocation" [fillcolor=deepskyblue1, label=ODINLocation, style=filled];
"DeterministicPrescaler/Hlt1NoBias_Prescaler" -> "DeterministicPrescaler/Hlt1NoBias_Prescaler_in_ODINLocation"  [minlen=0, style=invis];
}

"createODIN/Decode_ODIN_out_ODIN" -> "DeterministicPrescaler/Hlt1NoBias_Prescaler_in_ODINLocation";
subgraph "cluster_createODIN/Decode_ODIN" {
bgcolor=aliceblue;
label="";
"createODIN/Decode_ODIN" [label=<<B>createODIN/Decode_ODIN</B><BR/>defaults-only>, shape=plaintext];
"createODIN/Decode_ODIN_in_RawBanks" [fillcolor=deepskyblue1, label=RawBanks, style=filled];
"createODIN/Decode_ODIN" -> "createODIN/Decode_ODIN_in_RawBanks"  [minlen=0, style=invis];
"createODIN/Decode_ODIN_out_ODIN" [fillcolor=coral1, label=ODIN, style=filled];
"createODIN/Decode_ODIN" -> "createODIN/Decode_ODIN_out_ODIN"  [minlen=0, style=invis];
}

"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_out_RawBankLocations" -> "createODIN/Decode_ODIN_in_RawBanks";
subgraph "cluster_LHCb::UnpackRawEvent/UnpackRawEvent_ODIN" {
bgcolor=aliceblue;
label="";
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN" [label=<<B>LHCb::UnpackRawEvent/UnpackRawEvent_ODIN</B><BR/>BankTypes = [&#x27;ODIN&#x27;]<BR/>RawBankLocations = /Event/RawBanks/ODIN>, shape=plaintext];
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_in_RawEventLocation" [fillcolor=deepskyblue1, label=RawEventLocation, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN" -> "LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_in_RawEventLocation"  [minlen=0, style=invis];
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_out_RawBankLocations" [fillcolor=coral1, label=RawBankLocations, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN" -> "LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_out_RawBankLocations"  [minlen=0, style=invis];
}

"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" -> "LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_in_RawEventLocation";
subgraph "cluster_Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent" {
bgcolor=aliceblue;
label="";
"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent" [label=<<B>Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent</B><BR/>Output = /Event/DAQ/RawEvent>, shape=plaintext];
"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" [fillcolor=coral1, label=Output, style=filled];
"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent" -> "Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output"  [minlen=0, style=invis];
}

subgraph "cluster_DeterministicPrescaler/Hlt1SingleHighPtMuon_Prescaler" {
bgcolor=aliceblue;
label="";
"DeterministicPrescaler/Hlt1SingleHighPtMuon_Prescaler" [label=<<B>DeterministicPrescaler/Hlt1SingleHighPtMuon_Prescaler</B><BR/>AcceptFraction = 1.0<BR/>SeedName = Hlt1SingleHighPtMuonPrescaler>, shape=plaintext];
"DeterministicPrescaler/Hlt1SingleHighPtMuon_Prescaler_in_ODINLocation" [fillcolor=deepskyblue1, label=ODINLocation, style=filled];
"DeterministicPrescaler/Hlt1SingleHighPtMuon_Prescaler" -> "DeterministicPrescaler/Hlt1SingleHighPtMuon_Prescaler_in_ODINLocation"  [minlen=0, style=invis];
}

"createODIN/Decode_ODIN_out_ODIN" -> "DeterministicPrescaler/Hlt1SingleHighPtMuon_Prescaler_in_ODINLocation";
subgraph "cluster_createODIN/Decode_ODIN" {
bgcolor=aliceblue;
label="";
"createODIN/Decode_ODIN" [label=<<B>createODIN/Decode_ODIN</B><BR/>defaults-only>, shape=plaintext];
"createODIN/Decode_ODIN_in_RawBanks" [fillcolor=deepskyblue1, label=RawBanks, style=filled];
"createODIN/Decode_ODIN" -> "createODIN/Decode_ODIN_in_RawBanks"  [minlen=0, style=invis];
"createODIN/Decode_ODIN_out_ODIN" [fillcolor=coral1, label=ODIN, style=filled];
"createODIN/Decode_ODIN" -> "createODIN/Decode_ODIN_out_ODIN"  [minlen=0, style=invis];
}

"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_out_RawBankLocations" -> "createODIN/Decode_ODIN_in_RawBanks";
subgraph "cluster_LHCb::UnpackRawEvent/UnpackRawEvent_ODIN" {
bgcolor=aliceblue;
label="";
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN" [label=<<B>LHCb::UnpackRawEvent/UnpackRawEvent_ODIN</B><BR/>BankTypes = [&#x27;ODIN&#x27;]<BR/>RawBankLocations = /Event/RawBanks/ODIN>, shape=plaintext];
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_in_RawEventLocation" [fillcolor=deepskyblue1, label=RawEventLocation, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN" -> "LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_in_RawEventLocation"  [minlen=0, style=invis];
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_out_RawBankLocations" [fillcolor=coral1, label=RawBankLocations, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN" -> "LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_out_RawBankLocations"  [minlen=0, style=invis];
}

"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" -> "LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_in_RawEventLocation";
subgraph "cluster_Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent" {
bgcolor=aliceblue;
label="";
"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent" [label=<<B>Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent</B><BR/>Output = /Event/DAQ/RawEvent>, shape=plaintext];
"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" [fillcolor=coral1, label=Output, style=filled];
"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent" -> "Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output"  [minlen=0, style=invis];
}

subgraph "cluster_PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_300f2dbf" {
bgcolor=aliceblue;
label="";
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_300f2dbf" [label=<<B>PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_300f2dbf</B><BR/>Cut = FILTER(Functor=( ISMUON &amp; ( ( RHO_COORDINATE @ THR[...] ) &amp; ( ( MAGNITUDE @ THREEMOMENTUM ) &gt; 6000.0 ) ))>, shape=plaintext];
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_300f2dbf_in_Input" [fillcolor=deepskyblue1, label=Input, style=filled];
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_300f2dbf" -> "PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_300f2dbf_in_Input"  [minlen=0, style=invis];
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_300f2dbf_in_Cut_PyConfDataDependencies" [fillcolor=deepskyblue1, label=Cut_PyConfDataDependencies, style=filled];
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_300f2dbf" -> "PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_300f2dbf_in_Cut_PyConfDataDependencies"  [minlen=0, style=invis];
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_300f2dbf_out_OutputStorage" [fillcolor=coral1, label=OutputStorage, style=filled];
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_300f2dbf" -> "PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_300f2dbf_out_OutputStorage"  [minlen=0, style=invis];
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_300f2dbf_out_Output" [fillcolor=coral1, label=Output, style=filled];
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_300f2dbf" -> "PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_300f2dbf_out_Output"  [minlen=0, style=invis];
}

"MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89_out_Output" -> "PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_300f2dbf_in_Input";
subgraph "cluster_MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89" {
bgcolor=aliceblue;
label="";
"MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89" [label=<<B>MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89</B><BR/>defaults-only>, shape=plaintext];
"MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89_in_Input1" [fillcolor=deepskyblue1, label=Input1, style=filled];
"MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89" -> "MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89_in_Input1"  [minlen=0, style=invis];
"MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89_in_Input2" [fillcolor=deepskyblue1, label=Input2, style=filled];
"MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89" -> "MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89_in_Input2"  [minlen=0, style=invis];
"MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89_out_Output" [fillcolor=coral1, label=Output, style=filled];
"MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89" -> "MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89_out_Output"  [minlen=0, style=invis];
}

"VeloKalman/VeloKalman_bf73c006_out_OutputTracksLocation" -> "MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89_in_Input1";
subgraph "cluster_VeloKalman/VeloKalman_bf73c006" {
bgcolor=aliceblue;
label="";
"VeloKalman/VeloKalman_bf73c006" [label=<<B>VeloKalman/VeloKalman_bf73c006</B><BR/>defaults-only>, shape=plaintext];
"VeloKalman/VeloKalman_bf73c006_in_HitsLocation" [fillcolor=deepskyblue1, label=HitsLocation, style=filled];
"VeloKalman/VeloKalman_bf73c006" -> "VeloKalman/VeloKalman_bf73c006_in_HitsLocation"  [minlen=0, style=invis];
"VeloKalman/VeloKalman_bf73c006_in_TracksVPLocation" [fillcolor=deepskyblue1, label=TracksVPLocation, style=filled];
"VeloKalman/VeloKalman_bf73c006" -> "VeloKalman/VeloKalman_bf73c006_in_TracksVPLocation"  [minlen=0, style=invis];
"VeloKalman/VeloKalman_bf73c006_in_TracksFTLocation" [fillcolor=deepskyblue1, label=TracksFTLocation, style=filled];
"VeloKalman/VeloKalman_bf73c006" -> "VeloKalman/VeloKalman_bf73c006_in_TracksFTLocation"  [minlen=0, style=invis];
"VeloKalman/VeloKalman_bf73c006_in_UniqueIDGenerator" [fillcolor=deepskyblue1, label=UniqueIDGenerator, style=filled];
"VeloKalman/VeloKalman_bf73c006" -> "VeloKalman/VeloKalman_bf73c006_in_UniqueIDGenerator"  [minlen=0, style=invis];
"VeloKalman/VeloKalman_bf73c006_out_OutputTracksLocation" [fillcolor=coral1, label=OutputTracksLocation, style=filled];
"VeloKalman/VeloKalman_bf73c006" -> "VeloKalman/VeloKalman_bf73c006_out_OutputTracksLocation"  [minlen=0, style=invis];
}

"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_HitsLocation" -> "VeloKalman/VeloKalman_bf73c006_in_HitsLocation";
subgraph "cluster_VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651" {
bgcolor=aliceblue;
label="";
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651" [label=<<B>VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651</B><BR/>SensorMasks = (False, False, False, False, False, False, False, [...], False, False, False, False, False, False, False)<BR/>MaxScatterSeeding = 0.1<BR/>MaxScatterForwarding = 0.1<BR/>MaxScatter3hits = 0.02<BR/>SkipForward = 1>, shape=plaintext];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_in_RawBanks" [fillcolor=deepskyblue1, label=RawBanks, style=filled];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651" -> "VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_in_RawBanks"  [minlen=0, style=invis];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksLocation" [fillcolor=coral1, label=TracksLocation, style=filled];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651" -> "VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksLocation"  [minlen=0, style=invis];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksBackwardLocation" [fillcolor=coral1, label=TracksBackwardLocation, style=filled];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651" -> "VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksBackwardLocation"  [minlen=0, style=invis];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_HitsLocation" [fillcolor=coral1, label=HitsLocation, style=filled];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651" -> "VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_HitsLocation"  [minlen=0, style=invis];
}

"LHCb::UnpackRawEvent/UnpackRawEvent_VP_out_RawBankLocations" -> "VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_in_RawBanks";
subgraph "cluster_LHCb::UnpackRawEvent/UnpackRawEvent_VP" {
bgcolor=aliceblue;
label="";
"LHCb::UnpackRawEvent/UnpackRawEvent_VP" [label=<<B>LHCb::UnpackRawEvent/UnpackRawEvent_VP</B><BR/>BankTypes = [&#x27;VP&#x27;]<BR/>RawBankLocations = /Event/RawBanks/VP>, shape=plaintext];
"LHCb::UnpackRawEvent/UnpackRawEvent_VP_in_RawEventLocation" [fillcolor=deepskyblue1, label=RawEventLocation, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_VP" -> "LHCb::UnpackRawEvent/UnpackRawEvent_VP_in_RawEventLocation"  [minlen=0, style=invis];
"LHCb::UnpackRawEvent/UnpackRawEvent_VP_out_RawBankLocations" [fillcolor=coral1, label=RawBankLocations, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_VP" -> "LHCb::UnpackRawEvent/UnpackRawEvent_VP_out_RawBankLocations"  [minlen=0, style=invis];
}

"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" -> "LHCb::UnpackRawEvent/UnpackRawEvent_VP_in_RawEventLocation";
subgraph "cluster_Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent" {
bgcolor=aliceblue;
label="";
"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent" [label=<<B>Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent</B><BR/>Output = /Event/DAQ/RawEvent>, shape=plaintext];
"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" [fillcolor=coral1, label=Output, style=filled];
"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent" -> "Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output"  [minlen=0, style=invis];
}

"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksLocation" -> "VeloKalman/VeloKalman_bf73c006_in_TracksVPLocation";
"SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1_out_Output" -> "VeloKalman/VeloKalman_bf73c006_in_TracksFTLocation";
subgraph "cluster_SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1" {
bgcolor=aliceblue;
label="";
"SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1" [label=<<B>SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1</B><BR/>defaults-only>, shape=plaintext];
"SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1_in_HitsLocation" [fillcolor=deepskyblue1, label=HitsLocation, style=filled];
"SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1" -> "SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1_in_HitsLocation"  [minlen=0, style=invis];
"SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1_in_InputTracks" [fillcolor=deepskyblue1, label=InputTracks, style=filled];
"SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1" -> "SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1_in_InputTracks"  [minlen=0, style=invis];
"SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1_out_Output" [fillcolor=coral1, label=Output, style=filled];
"SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1" -> "SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1_out_Output"  [minlen=0, style=invis];
}

"SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19_out_Output" -> "SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1_in_HitsLocation";
subgraph "cluster_SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19" {
bgcolor=aliceblue;
label="";
"SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19" [label=<<B>SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19</B><BR/>defaults-only>, shape=plaintext];
"SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19_in_HitsLocation" [fillcolor=deepskyblue1, label=HitsLocation, style=filled];
"SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19" -> "SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19_in_HitsLocation"  [minlen=0, style=invis];
"SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19_out_Output" [fillcolor=coral1, label=Output, style=filled];
"SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19" -> "SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19_out_Output"  [minlen=0, style=invis];
}

"FTRawBankDecoder/FTRawBankDecoder_out_OutputLocation" -> "SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19_in_HitsLocation";
subgraph "cluster_FTRawBankDecoder/FTRawBankDecoder" {
bgcolor=aliceblue;
label="";
"FTRawBankDecoder/FTRawBankDecoder" [label=<<B>FTRawBankDecoder/FTRawBankDecoder</B><BR/>defaults-only>, shape=plaintext];
"FTRawBankDecoder/FTRawBankDecoder_in_Odin" [fillcolor=deepskyblue1, label=Odin, style=filled];
"FTRawBankDecoder/FTRawBankDecoder" -> "FTRawBankDecoder/FTRawBankDecoder_in_Odin"  [minlen=0, style=invis];
"FTRawBankDecoder/FTRawBankDecoder_in_RawBanks" [fillcolor=deepskyblue1, label=RawBanks, style=filled];
"FTRawBankDecoder/FTRawBankDecoder" -> "FTRawBankDecoder/FTRawBankDecoder_in_RawBanks"  [minlen=0, style=invis];
"FTRawBankDecoder/FTRawBankDecoder_out_OutputLocation" [fillcolor=coral1, label=OutputLocation, style=filled];
"FTRawBankDecoder/FTRawBankDecoder" -> "FTRawBankDecoder/FTRawBankDecoder_out_OutputLocation"  [minlen=0, style=invis];
}

"createODIN/Decode_ODIN_out_ODIN" -> "FTRawBankDecoder/FTRawBankDecoder_in_Odin";
subgraph "cluster_createODIN/Decode_ODIN" {
bgcolor=aliceblue;
label="";
"createODIN/Decode_ODIN" [label=<<B>createODIN/Decode_ODIN</B><BR/>defaults-only>, shape=plaintext];
"createODIN/Decode_ODIN_in_RawBanks" [fillcolor=deepskyblue1, label=RawBanks, style=filled];
"createODIN/Decode_ODIN" -> "createODIN/Decode_ODIN_in_RawBanks"  [minlen=0, style=invis];
"createODIN/Decode_ODIN_out_ODIN" [fillcolor=coral1, label=ODIN, style=filled];
"createODIN/Decode_ODIN" -> "createODIN/Decode_ODIN_out_ODIN"  [minlen=0, style=invis];
}

"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_out_RawBankLocations" -> "createODIN/Decode_ODIN_in_RawBanks";
subgraph "cluster_LHCb::UnpackRawEvent/UnpackRawEvent_ODIN" {
bgcolor=aliceblue;
label="";
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN" [label=<<B>LHCb::UnpackRawEvent/UnpackRawEvent_ODIN</B><BR/>BankTypes = [&#x27;ODIN&#x27;]<BR/>RawBankLocations = /Event/RawBanks/ODIN>, shape=plaintext];
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_in_RawEventLocation" [fillcolor=deepskyblue1, label=RawEventLocation, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN" -> "LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_in_RawEventLocation"  [minlen=0, style=invis];
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_out_RawBankLocations" [fillcolor=coral1, label=RawBankLocations, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN" -> "LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_out_RawBankLocations"  [minlen=0, style=invis];
}

"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" -> "LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_in_RawEventLocation";
"LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster_out_RawBankLocations" -> "FTRawBankDecoder/FTRawBankDecoder_in_RawBanks";
subgraph "cluster_LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster" {
bgcolor=aliceblue;
label="";
"LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster" [label=<<B>LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster</B><BR/>BankTypes = [&#x27;FTCluster&#x27;]<BR/>RawBankLocations = /Event/RawBanks/FTCluster>, shape=plaintext];
"LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster_in_RawEventLocation" [fillcolor=deepskyblue1, label=RawEventLocation, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster" -> "LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster_in_RawEventLocation"  [minlen=0, style=invis];
"LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster_out_RawBankLocations" [fillcolor=coral1, label=RawBankLocations, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster" -> "LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster_out_RawBankLocations"  [minlen=0, style=invis];
}

"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" -> "LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster_in_RawEventLocation";
"PrVeloUT/PrVeloUT_4eab5c1b_out_OutputTracksName" -> "SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1_in_InputTracks";
subgraph "cluster_PrVeloUT/PrVeloUT_4eab5c1b" {
bgcolor=aliceblue;
label="";
"PrVeloUT/PrVeloUT_4eab5c1b" [label=<<B>PrVeloUT/PrVeloUT_4eab5c1b</B><BR/>defaults-only>, shape=plaintext];
"PrVeloUT/PrVeloUT_4eab5c1b_in_InputTracksName" [fillcolor=deepskyblue1, label=InputTracksName, style=filled];
"PrVeloUT/PrVeloUT_4eab5c1b" -> "PrVeloUT/PrVeloUT_4eab5c1b_in_InputTracksName"  [minlen=0, style=invis];
"PrVeloUT/PrVeloUT_4eab5c1b_in_UTHits" [fillcolor=deepskyblue1, label=UTHits, style=filled];
"PrVeloUT/PrVeloUT_4eab5c1b" -> "PrVeloUT/PrVeloUT_4eab5c1b_in_UTHits"  [minlen=0, style=invis];
"PrVeloUT/PrVeloUT_4eab5c1b_out_OutputTracksName" [fillcolor=coral1, label=OutputTracksName, style=filled];
"PrVeloUT/PrVeloUT_4eab5c1b" -> "PrVeloUT/PrVeloUT_4eab5c1b_out_OutputTracksName"  [minlen=0, style=invis];
}

"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksLocation" -> "PrVeloUT/PrVeloUT_4eab5c1b_in_InputTracksName";
"PrStorePrUTHits/PrStorePrUTHits_df75b912_out_UTHitsLocation" -> "PrVeloUT/PrVeloUT_4eab5c1b_in_UTHits";
subgraph "cluster_PrStorePrUTHits/PrStorePrUTHits_df75b912" {
bgcolor=aliceblue;
label="";
"PrStorePrUTHits/PrStorePrUTHits_df75b912" [label=<<B>PrStorePrUTHits/PrStorePrUTHits_df75b912</B><BR/>isCluster = True<BR/>positionMethod = GeoWeighting>, shape=plaintext];
"PrStorePrUTHits/PrStorePrUTHits_df75b912_in_RawBanks" [fillcolor=deepskyblue1, label=RawBanks, style=filled];
"PrStorePrUTHits/PrStorePrUTHits_df75b912" -> "PrStorePrUTHits/PrStorePrUTHits_df75b912_in_RawBanks"  [minlen=0, style=invis];
"PrStorePrUTHits/PrStorePrUTHits_df75b912_out_UTHitsLocation" [fillcolor=coral1, label=UTHitsLocation, style=filled];
"PrStorePrUTHits/PrStorePrUTHits_df75b912" -> "PrStorePrUTHits/PrStorePrUTHits_df75b912_out_UTHitsLocation"  [minlen=0, style=invis];
}

"LHCb::UnpackRawEvent/UnpackRawEvent_UT_out_RawBankLocations" -> "PrStorePrUTHits/PrStorePrUTHits_df75b912_in_RawBanks";
subgraph "cluster_LHCb::UnpackRawEvent/UnpackRawEvent_UT" {
bgcolor=aliceblue;
label="";
"LHCb::UnpackRawEvent/UnpackRawEvent_UT" [label=<<B>LHCb::UnpackRawEvent/UnpackRawEvent_UT</B><BR/>BankTypes = [&#x27;UT&#x27;]<BR/>RawBankLocations = /Event/RawBanks/UT>, shape=plaintext];
"LHCb::UnpackRawEvent/UnpackRawEvent_UT_in_RawEventLocation" [fillcolor=deepskyblue1, label=RawEventLocation, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_UT" -> "LHCb::UnpackRawEvent/UnpackRawEvent_UT_in_RawEventLocation"  [minlen=0, style=invis];
"LHCb::UnpackRawEvent/UnpackRawEvent_UT_out_RawBankLocations" [fillcolor=coral1, label=RawBankLocations, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_UT" -> "LHCb::UnpackRawEvent/UnpackRawEvent_UT_out_RawBankLocations"  [minlen=0, style=invis];
}

"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" -> "LHCb::UnpackRawEvent/UnpackRawEvent_UT_in_RawEventLocation";
"UniqueIDGeneratorAlg/UniqueIDGeneratorAlg_26e527e9_out_Output" -> "VeloKalman/VeloKalman_bf73c006_in_UniqueIDGenerator";
subgraph "cluster_UniqueIDGeneratorAlg/UniqueIDGeneratorAlg_26e527e9" {
bgcolor=aliceblue;
label="";
"UniqueIDGeneratorAlg/UniqueIDGeneratorAlg_26e527e9" [label=<<B>UniqueIDGeneratorAlg/UniqueIDGeneratorAlg_26e527e9</B><BR/>defaults-only>, shape=plaintext];
"UniqueIDGeneratorAlg/UniqueIDGeneratorAlg_26e527e9_out_Output" [fillcolor=coral1, label=Output, style=filled];
"UniqueIDGeneratorAlg/UniqueIDGeneratorAlg_26e527e9" -> "UniqueIDGeneratorAlg/UniqueIDGeneratorAlg_26e527e9_out_Output"  [minlen=0, style=invis];
}

"MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4_out_OutputMuonPID" -> "MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89_in_Input2";
subgraph "cluster_MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4" {
bgcolor=aliceblue;
label="";
"MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4" [label=<<B>MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4</B><BR/>runMVA = False>, shape=plaintext];
"MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4_in_InputTracks" [fillcolor=deepskyblue1, label=InputTracks, style=filled];
"MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4" -> "MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4_in_InputTracks"  [minlen=0, style=invis];
"MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4_in_InputMuonHits" [fillcolor=deepskyblue1, label=InputMuonHits, style=filled];
"MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4" -> "MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4_in_InputMuonHits"  [minlen=0, style=invis];
"MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4_out_OutputMuonPID" [fillcolor=coral1, label=OutputMuonPID, style=filled];
"MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4" -> "MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4_out_OutputMuonPID"  [minlen=0, style=invis];
}

"SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1_out_Output" -> "MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4_in_InputTracks";
"MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab_out_HitContainer" -> "MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4_in_InputMuonHits";
subgraph "cluster_MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab" {
bgcolor=aliceblue;
label="";
"MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab" [label=<<B>MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab</B><BR/>defaults-only>, shape=plaintext];
"MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab_in_RawBanks" [fillcolor=deepskyblue1, label=RawBanks, style=filled];
"MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab" -> "MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab_in_RawBanks"  [minlen=0, style=invis];
"MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab_in_ErrorRawBanks" [fillcolor=deepskyblue1, label=ErrorRawBanks, style=filled];
"MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab" -> "MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab_in_ErrorRawBanks"  [minlen=0, style=invis];
"MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab_out_HitContainer" [fillcolor=coral1, label=HitContainer, style=filled];
"MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab" -> "MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab_out_HitContainer"  [minlen=0, style=invis];
}

"LHCb::UnpackRawEvent/UnpackRawEvent_Muon_out_RawBankLocations" -> "MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab_in_RawBanks";
subgraph "cluster_LHCb::UnpackRawEvent/UnpackRawEvent_Muon" {
bgcolor=aliceblue;
label="";
"LHCb::UnpackRawEvent/UnpackRawEvent_Muon" [label=<<B>LHCb::UnpackRawEvent/UnpackRawEvent_Muon</B><BR/>BankTypes = [&#x27;Muon&#x27;]<BR/>RawBankLocations = /Event/RawBanks/Muon>, shape=plaintext];
"LHCb::UnpackRawEvent/UnpackRawEvent_Muon_in_RawEventLocation" [fillcolor=deepskyblue1, label=RawEventLocation, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_Muon" -> "LHCb::UnpackRawEvent/UnpackRawEvent_Muon_in_RawEventLocation"  [minlen=0, style=invis];
"LHCb::UnpackRawEvent/UnpackRawEvent_Muon_out_RawBankLocations" [fillcolor=coral1, label=RawBankLocations, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_Muon" -> "LHCb::UnpackRawEvent/UnpackRawEvent_Muon_out_RawBankLocations"  [minlen=0, style=invis];
}

"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" -> "LHCb::UnpackRawEvent/UnpackRawEvent_Muon_in_RawEventLocation";
"LHCb::UnpackRawEvent/UnpackRawEvent_MuonError_out_RawBankLocations" -> "MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab_in_ErrorRawBanks";
subgraph "cluster_LHCb::UnpackRawEvent/UnpackRawEvent_MuonError" {
bgcolor=aliceblue;
label="";
"LHCb::UnpackRawEvent/UnpackRawEvent_MuonError" [label=<<B>LHCb::UnpackRawEvent/UnpackRawEvent_MuonError</B><BR/>BankTypes = [&#x27;MuonError&#x27;]<BR/>RawBankLocations = /Event/RawBanks/MuonError>, shape=plaintext];
"LHCb::UnpackRawEvent/UnpackRawEvent_MuonError_in_RawEventLocation" [fillcolor=deepskyblue1, label=RawEventLocation, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_MuonError" -> "LHCb::UnpackRawEvent/UnpackRawEvent_MuonError_in_RawEventLocation"  [minlen=0, style=invis];
"LHCb::UnpackRawEvent/UnpackRawEvent_MuonError_out_RawBankLocations" [fillcolor=coral1, label=RawBankLocations, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_MuonError" -> "LHCb::UnpackRawEvent/UnpackRawEvent_MuonError_out_RawBankLocations"  [minlen=0, style=invis];
}

"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" -> "LHCb::UnpackRawEvent/UnpackRawEvent_MuonError_in_RawEventLocation";
subgraph "cluster_fromV3TrackWithMuonIDV1TrackVector/fromV3TrackWithMuonIDV1TrackVector_17daa9b9" {
bgcolor=aliceblue;
label="";
"fromV3TrackWithMuonIDV1TrackVector/fromV3TrackWithMuonIDV1TrackVector_17daa9b9" [label=<<B>fromV3TrackWithMuonIDV1TrackVector/fromV3TrackWithMuonIDV1TrackVector_17daa9b9</B><BR/>defaults-only>, shape=plaintext];
"fromV3TrackWithMuonIDV1TrackVector/fromV3TrackWithMuonIDV1TrackVector_17daa9b9_in_InputTracks" [fillcolor=deepskyblue1, label=InputTracks, style=filled];
"fromV3TrackWithMuonIDV1TrackVector/fromV3TrackWithMuonIDV1TrackVector_17daa9b9" -> "fromV3TrackWithMuonIDV1TrackVector/fromV3TrackWithMuonIDV1TrackVector_17daa9b9_in_InputTracks"  [minlen=0, style=invis];
"fromV3TrackWithMuonIDV1TrackVector/fromV3TrackWithMuonIDV1TrackVector_17daa9b9_out_OutputTracks" [fillcolor=coral1, label=OutputTracks, style=filled];
"fromV3TrackWithMuonIDV1TrackVector/fromV3TrackWithMuonIDV1TrackVector_17daa9b9" -> "fromV3TrackWithMuonIDV1TrackVector/fromV3TrackWithMuonIDV1TrackVector_17daa9b9_out_OutputTracks"  [minlen=0, style=invis];
}

"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_300f2dbf_out_Output" -> "fromV3TrackWithMuonIDV1TrackVector/fromV3TrackWithMuonIDV1TrackVector_17daa9b9_in_InputTracks";
subgraph "cluster_PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_300f2dbf" {
bgcolor=aliceblue;
label="";
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_300f2dbf" [label=<<B>PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_300f2dbf</B><BR/>Cut = FILTER(Functor=( ISMUON &amp; ( ( RHO_COORDINATE @ THR[...] ) &amp; ( ( MAGNITUDE @ THREEMOMENTUM ) &gt; 6000.0 ) ))>, shape=plaintext];
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_300f2dbf_in_Input" [fillcolor=deepskyblue1, label=Input, style=filled];
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_300f2dbf" -> "PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_300f2dbf_in_Input"  [minlen=0, style=invis];
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_300f2dbf_in_Cut_PyConfDataDependencies" [fillcolor=deepskyblue1, label=Cut_PyConfDataDependencies, style=filled];
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_300f2dbf" -> "PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_300f2dbf_in_Cut_PyConfDataDependencies"  [minlen=0, style=invis];
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_300f2dbf_out_OutputStorage" [fillcolor=coral1, label=OutputStorage, style=filled];
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_300f2dbf" -> "PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_300f2dbf_out_OutputStorage"  [minlen=0, style=invis];
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_300f2dbf_out_Output" [fillcolor=coral1, label=Output, style=filled];
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_300f2dbf" -> "PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_300f2dbf_out_Output"  [minlen=0, style=invis];
}

"MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89_out_Output" -> "PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_300f2dbf_in_Input";
subgraph "cluster_MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89" {
bgcolor=aliceblue;
label="";
"MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89" [label=<<B>MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89</B><BR/>defaults-only>, shape=plaintext];
"MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89_in_Input1" [fillcolor=deepskyblue1, label=Input1, style=filled];
"MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89" -> "MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89_in_Input1"  [minlen=0, style=invis];
"MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89_in_Input2" [fillcolor=deepskyblue1, label=Input2, style=filled];
"MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89" -> "MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89_in_Input2"  [minlen=0, style=invis];
"MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89_out_Output" [fillcolor=coral1, label=Output, style=filled];
"MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89" -> "MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89_out_Output"  [minlen=0, style=invis];
}

"VeloKalman/VeloKalman_bf73c006_out_OutputTracksLocation" -> "MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89_in_Input1";
subgraph "cluster_VeloKalman/VeloKalman_bf73c006" {
bgcolor=aliceblue;
label="";
"VeloKalman/VeloKalman_bf73c006" [label=<<B>VeloKalman/VeloKalman_bf73c006</B><BR/>defaults-only>, shape=plaintext];
"VeloKalman/VeloKalman_bf73c006_in_HitsLocation" [fillcolor=deepskyblue1, label=HitsLocation, style=filled];
"VeloKalman/VeloKalman_bf73c006" -> "VeloKalman/VeloKalman_bf73c006_in_HitsLocation"  [minlen=0, style=invis];
"VeloKalman/VeloKalman_bf73c006_in_TracksVPLocation" [fillcolor=deepskyblue1, label=TracksVPLocation, style=filled];
"VeloKalman/VeloKalman_bf73c006" -> "VeloKalman/VeloKalman_bf73c006_in_TracksVPLocation"  [minlen=0, style=invis];
"VeloKalman/VeloKalman_bf73c006_in_TracksFTLocation" [fillcolor=deepskyblue1, label=TracksFTLocation, style=filled];
"VeloKalman/VeloKalman_bf73c006" -> "VeloKalman/VeloKalman_bf73c006_in_TracksFTLocation"  [minlen=0, style=invis];
"VeloKalman/VeloKalman_bf73c006_in_UniqueIDGenerator" [fillcolor=deepskyblue1, label=UniqueIDGenerator, style=filled];
"VeloKalman/VeloKalman_bf73c006" -> "VeloKalman/VeloKalman_bf73c006_in_UniqueIDGenerator"  [minlen=0, style=invis];
"VeloKalman/VeloKalman_bf73c006_out_OutputTracksLocation" [fillcolor=coral1, label=OutputTracksLocation, style=filled];
"VeloKalman/VeloKalman_bf73c006" -> "VeloKalman/VeloKalman_bf73c006_out_OutputTracksLocation"  [minlen=0, style=invis];
}

"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_HitsLocation" -> "VeloKalman/VeloKalman_bf73c006_in_HitsLocation";
subgraph "cluster_VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651" {
bgcolor=aliceblue;
label="";
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651" [label=<<B>VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651</B><BR/>SensorMasks = (False, False, False, False, False, False, False, [...], False, False, False, False, False, False, False)<BR/>MaxScatterSeeding = 0.1<BR/>MaxScatterForwarding = 0.1<BR/>MaxScatter3hits = 0.02<BR/>SkipForward = 1>, shape=plaintext];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_in_RawBanks" [fillcolor=deepskyblue1, label=RawBanks, style=filled];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651" -> "VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_in_RawBanks"  [minlen=0, style=invis];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksLocation" [fillcolor=coral1, label=TracksLocation, style=filled];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651" -> "VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksLocation"  [minlen=0, style=invis];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksBackwardLocation" [fillcolor=coral1, label=TracksBackwardLocation, style=filled];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651" -> "VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksBackwardLocation"  [minlen=0, style=invis];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_HitsLocation" [fillcolor=coral1, label=HitsLocation, style=filled];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651" -> "VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_HitsLocation"  [minlen=0, style=invis];
}

"LHCb::UnpackRawEvent/UnpackRawEvent_VP_out_RawBankLocations" -> "VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_in_RawBanks";
subgraph "cluster_LHCb::UnpackRawEvent/UnpackRawEvent_VP" {
bgcolor=aliceblue;
label="";
"LHCb::UnpackRawEvent/UnpackRawEvent_VP" [label=<<B>LHCb::UnpackRawEvent/UnpackRawEvent_VP</B><BR/>BankTypes = [&#x27;VP&#x27;]<BR/>RawBankLocations = /Event/RawBanks/VP>, shape=plaintext];
"LHCb::UnpackRawEvent/UnpackRawEvent_VP_in_RawEventLocation" [fillcolor=deepskyblue1, label=RawEventLocation, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_VP" -> "LHCb::UnpackRawEvent/UnpackRawEvent_VP_in_RawEventLocation"  [minlen=0, style=invis];
"LHCb::UnpackRawEvent/UnpackRawEvent_VP_out_RawBankLocations" [fillcolor=coral1, label=RawBankLocations, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_VP" -> "LHCb::UnpackRawEvent/UnpackRawEvent_VP_out_RawBankLocations"  [minlen=0, style=invis];
}

"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" -> "LHCb::UnpackRawEvent/UnpackRawEvent_VP_in_RawEventLocation";
subgraph "cluster_Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent" {
bgcolor=aliceblue;
label="";
"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent" [label=<<B>Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent</B><BR/>Output = /Event/DAQ/RawEvent>, shape=plaintext];
"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" [fillcolor=coral1, label=Output, style=filled];
"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent" -> "Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output"  [minlen=0, style=invis];
}

"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksLocation" -> "VeloKalman/VeloKalman_bf73c006_in_TracksVPLocation";
"SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1_out_Output" -> "VeloKalman/VeloKalman_bf73c006_in_TracksFTLocation";
subgraph "cluster_SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1" {
bgcolor=aliceblue;
label="";
"SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1" [label=<<B>SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1</B><BR/>defaults-only>, shape=plaintext];
"SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1_in_HitsLocation" [fillcolor=deepskyblue1, label=HitsLocation, style=filled];
"SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1" -> "SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1_in_HitsLocation"  [minlen=0, style=invis];
"SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1_in_InputTracks" [fillcolor=deepskyblue1, label=InputTracks, style=filled];
"SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1" -> "SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1_in_InputTracks"  [minlen=0, style=invis];
"SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1_out_Output" [fillcolor=coral1, label=Output, style=filled];
"SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1" -> "SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1_out_Output"  [minlen=0, style=invis];
}

"SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19_out_Output" -> "SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1_in_HitsLocation";
subgraph "cluster_SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19" {
bgcolor=aliceblue;
label="";
"SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19" [label=<<B>SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19</B><BR/>defaults-only>, shape=plaintext];
"SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19_in_HitsLocation" [fillcolor=deepskyblue1, label=HitsLocation, style=filled];
"SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19" -> "SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19_in_HitsLocation"  [minlen=0, style=invis];
"SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19_out_Output" [fillcolor=coral1, label=Output, style=filled];
"SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19" -> "SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19_out_Output"  [minlen=0, style=invis];
}

"FTRawBankDecoder/FTRawBankDecoder_out_OutputLocation" -> "SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19_in_HitsLocation";
subgraph "cluster_FTRawBankDecoder/FTRawBankDecoder" {
bgcolor=aliceblue;
label="";
"FTRawBankDecoder/FTRawBankDecoder" [label=<<B>FTRawBankDecoder/FTRawBankDecoder</B><BR/>defaults-only>, shape=plaintext];
"FTRawBankDecoder/FTRawBankDecoder_in_Odin" [fillcolor=deepskyblue1, label=Odin, style=filled];
"FTRawBankDecoder/FTRawBankDecoder" -> "FTRawBankDecoder/FTRawBankDecoder_in_Odin"  [minlen=0, style=invis];
"FTRawBankDecoder/FTRawBankDecoder_in_RawBanks" [fillcolor=deepskyblue1, label=RawBanks, style=filled];
"FTRawBankDecoder/FTRawBankDecoder" -> "FTRawBankDecoder/FTRawBankDecoder_in_RawBanks"  [minlen=0, style=invis];
"FTRawBankDecoder/FTRawBankDecoder_out_OutputLocation" [fillcolor=coral1, label=OutputLocation, style=filled];
"FTRawBankDecoder/FTRawBankDecoder" -> "FTRawBankDecoder/FTRawBankDecoder_out_OutputLocation"  [minlen=0, style=invis];
}

"createODIN/Decode_ODIN_out_ODIN" -> "FTRawBankDecoder/FTRawBankDecoder_in_Odin";
subgraph "cluster_createODIN/Decode_ODIN" {
bgcolor=aliceblue;
label="";
"createODIN/Decode_ODIN" [label=<<B>createODIN/Decode_ODIN</B><BR/>defaults-only>, shape=plaintext];
"createODIN/Decode_ODIN_in_RawBanks" [fillcolor=deepskyblue1, label=RawBanks, style=filled];
"createODIN/Decode_ODIN" -> "createODIN/Decode_ODIN_in_RawBanks"  [minlen=0, style=invis];
"createODIN/Decode_ODIN_out_ODIN" [fillcolor=coral1, label=ODIN, style=filled];
"createODIN/Decode_ODIN" -> "createODIN/Decode_ODIN_out_ODIN"  [minlen=0, style=invis];
}

"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_out_RawBankLocations" -> "createODIN/Decode_ODIN_in_RawBanks";
subgraph "cluster_LHCb::UnpackRawEvent/UnpackRawEvent_ODIN" {
bgcolor=aliceblue;
label="";
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN" [label=<<B>LHCb::UnpackRawEvent/UnpackRawEvent_ODIN</B><BR/>BankTypes = [&#x27;ODIN&#x27;]<BR/>RawBankLocations = /Event/RawBanks/ODIN>, shape=plaintext];
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_in_RawEventLocation" [fillcolor=deepskyblue1, label=RawEventLocation, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN" -> "LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_in_RawEventLocation"  [minlen=0, style=invis];
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_out_RawBankLocations" [fillcolor=coral1, label=RawBankLocations, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN" -> "LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_out_RawBankLocations"  [minlen=0, style=invis];
}

"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" -> "LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_in_RawEventLocation";
"LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster_out_RawBankLocations" -> "FTRawBankDecoder/FTRawBankDecoder_in_RawBanks";
subgraph "cluster_LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster" {
bgcolor=aliceblue;
label="";
"LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster" [label=<<B>LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster</B><BR/>BankTypes = [&#x27;FTCluster&#x27;]<BR/>RawBankLocations = /Event/RawBanks/FTCluster>, shape=plaintext];
"LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster_in_RawEventLocation" [fillcolor=deepskyblue1, label=RawEventLocation, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster" -> "LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster_in_RawEventLocation"  [minlen=0, style=invis];
"LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster_out_RawBankLocations" [fillcolor=coral1, label=RawBankLocations, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster" -> "LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster_out_RawBankLocations"  [minlen=0, style=invis];
}

"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" -> "LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster_in_RawEventLocation";
"PrVeloUT/PrVeloUT_4eab5c1b_out_OutputTracksName" -> "SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1_in_InputTracks";
subgraph "cluster_PrVeloUT/PrVeloUT_4eab5c1b" {
bgcolor=aliceblue;
label="";
"PrVeloUT/PrVeloUT_4eab5c1b" [label=<<B>PrVeloUT/PrVeloUT_4eab5c1b</B><BR/>defaults-only>, shape=plaintext];
"PrVeloUT/PrVeloUT_4eab5c1b_in_InputTracksName" [fillcolor=deepskyblue1, label=InputTracksName, style=filled];
"PrVeloUT/PrVeloUT_4eab5c1b" -> "PrVeloUT/PrVeloUT_4eab5c1b_in_InputTracksName"  [minlen=0, style=invis];
"PrVeloUT/PrVeloUT_4eab5c1b_in_UTHits" [fillcolor=deepskyblue1, label=UTHits, style=filled];
"PrVeloUT/PrVeloUT_4eab5c1b" -> "PrVeloUT/PrVeloUT_4eab5c1b_in_UTHits"  [minlen=0, style=invis];
"PrVeloUT/PrVeloUT_4eab5c1b_out_OutputTracksName" [fillcolor=coral1, label=OutputTracksName, style=filled];
"PrVeloUT/PrVeloUT_4eab5c1b" -> "PrVeloUT/PrVeloUT_4eab5c1b_out_OutputTracksName"  [minlen=0, style=invis];
}

"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksLocation" -> "PrVeloUT/PrVeloUT_4eab5c1b_in_InputTracksName";
"PrStorePrUTHits/PrStorePrUTHits_df75b912_out_UTHitsLocation" -> "PrVeloUT/PrVeloUT_4eab5c1b_in_UTHits";
subgraph "cluster_PrStorePrUTHits/PrStorePrUTHits_df75b912" {
bgcolor=aliceblue;
label="";
"PrStorePrUTHits/PrStorePrUTHits_df75b912" [label=<<B>PrStorePrUTHits/PrStorePrUTHits_df75b912</B><BR/>isCluster = True<BR/>positionMethod = GeoWeighting>, shape=plaintext];
"PrStorePrUTHits/PrStorePrUTHits_df75b912_in_RawBanks" [fillcolor=deepskyblue1, label=RawBanks, style=filled];
"PrStorePrUTHits/PrStorePrUTHits_df75b912" -> "PrStorePrUTHits/PrStorePrUTHits_df75b912_in_RawBanks"  [minlen=0, style=invis];
"PrStorePrUTHits/PrStorePrUTHits_df75b912_out_UTHitsLocation" [fillcolor=coral1, label=UTHitsLocation, style=filled];
"PrStorePrUTHits/PrStorePrUTHits_df75b912" -> "PrStorePrUTHits/PrStorePrUTHits_df75b912_out_UTHitsLocation"  [minlen=0, style=invis];
}

"LHCb::UnpackRawEvent/UnpackRawEvent_UT_out_RawBankLocations" -> "PrStorePrUTHits/PrStorePrUTHits_df75b912_in_RawBanks";
subgraph "cluster_LHCb::UnpackRawEvent/UnpackRawEvent_UT" {
bgcolor=aliceblue;
label="";
"LHCb::UnpackRawEvent/UnpackRawEvent_UT" [label=<<B>LHCb::UnpackRawEvent/UnpackRawEvent_UT</B><BR/>BankTypes = [&#x27;UT&#x27;]<BR/>RawBankLocations = /Event/RawBanks/UT>, shape=plaintext];
"LHCb::UnpackRawEvent/UnpackRawEvent_UT_in_RawEventLocation" [fillcolor=deepskyblue1, label=RawEventLocation, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_UT" -> "LHCb::UnpackRawEvent/UnpackRawEvent_UT_in_RawEventLocation"  [minlen=0, style=invis];
"LHCb::UnpackRawEvent/UnpackRawEvent_UT_out_RawBankLocations" [fillcolor=coral1, label=RawBankLocations, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_UT" -> "LHCb::UnpackRawEvent/UnpackRawEvent_UT_out_RawBankLocations"  [minlen=0, style=invis];
}

"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" -> "LHCb::UnpackRawEvent/UnpackRawEvent_UT_in_RawEventLocation";
"UniqueIDGeneratorAlg/UniqueIDGeneratorAlg_26e527e9_out_Output" -> "VeloKalman/VeloKalman_bf73c006_in_UniqueIDGenerator";
subgraph "cluster_UniqueIDGeneratorAlg/UniqueIDGeneratorAlg_26e527e9" {
bgcolor=aliceblue;
label="";
"UniqueIDGeneratorAlg/UniqueIDGeneratorAlg_26e527e9" [label=<<B>UniqueIDGeneratorAlg/UniqueIDGeneratorAlg_26e527e9</B><BR/>defaults-only>, shape=plaintext];
"UniqueIDGeneratorAlg/UniqueIDGeneratorAlg_26e527e9_out_Output" [fillcolor=coral1, label=Output, style=filled];
"UniqueIDGeneratorAlg/UniqueIDGeneratorAlg_26e527e9" -> "UniqueIDGeneratorAlg/UniqueIDGeneratorAlg_26e527e9_out_Output"  [minlen=0, style=invis];
}

"MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4_out_OutputMuonPID" -> "MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89_in_Input2";
subgraph "cluster_MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4" {
bgcolor=aliceblue;
label="";
"MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4" [label=<<B>MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4</B><BR/>runMVA = False>, shape=plaintext];
"MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4_in_InputTracks" [fillcolor=deepskyblue1, label=InputTracks, style=filled];
"MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4" -> "MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4_in_InputTracks"  [minlen=0, style=invis];
"MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4_in_InputMuonHits" [fillcolor=deepskyblue1, label=InputMuonHits, style=filled];
"MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4" -> "MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4_in_InputMuonHits"  [minlen=0, style=invis];
"MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4_out_OutputMuonPID" [fillcolor=coral1, label=OutputMuonPID, style=filled];
"MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4" -> "MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4_out_OutputMuonPID"  [minlen=0, style=invis];
}

"SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1_out_Output" -> "MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4_in_InputTracks";
"MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab_out_HitContainer" -> "MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4_in_InputMuonHits";
subgraph "cluster_MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab" {
bgcolor=aliceblue;
label="";
"MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab" [label=<<B>MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab</B><BR/>defaults-only>, shape=plaintext];
"MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab_in_RawBanks" [fillcolor=deepskyblue1, label=RawBanks, style=filled];
"MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab" -> "MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab_in_RawBanks"  [minlen=0, style=invis];
"MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab_in_ErrorRawBanks" [fillcolor=deepskyblue1, label=ErrorRawBanks, style=filled];
"MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab" -> "MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab_in_ErrorRawBanks"  [minlen=0, style=invis];
"MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab_out_HitContainer" [fillcolor=coral1, label=HitContainer, style=filled];
"MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab" -> "MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab_out_HitContainer"  [minlen=0, style=invis];
}

"LHCb::UnpackRawEvent/UnpackRawEvent_Muon_out_RawBankLocations" -> "MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab_in_RawBanks";
subgraph "cluster_LHCb::UnpackRawEvent/UnpackRawEvent_Muon" {
bgcolor=aliceblue;
label="";
"LHCb::UnpackRawEvent/UnpackRawEvent_Muon" [label=<<B>LHCb::UnpackRawEvent/UnpackRawEvent_Muon</B><BR/>BankTypes = [&#x27;Muon&#x27;]<BR/>RawBankLocations = /Event/RawBanks/Muon>, shape=plaintext];
"LHCb::UnpackRawEvent/UnpackRawEvent_Muon_in_RawEventLocation" [fillcolor=deepskyblue1, label=RawEventLocation, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_Muon" -> "LHCb::UnpackRawEvent/UnpackRawEvent_Muon_in_RawEventLocation"  [minlen=0, style=invis];
"LHCb::UnpackRawEvent/UnpackRawEvent_Muon_out_RawBankLocations" [fillcolor=coral1, label=RawBankLocations, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_Muon" -> "LHCb::UnpackRawEvent/UnpackRawEvent_Muon_out_RawBankLocations"  [minlen=0, style=invis];
}

"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" -> "LHCb::UnpackRawEvent/UnpackRawEvent_Muon_in_RawEventLocation";
"LHCb::UnpackRawEvent/UnpackRawEvent_MuonError_out_RawBankLocations" -> "MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab_in_ErrorRawBanks";
subgraph "cluster_LHCb::UnpackRawEvent/UnpackRawEvent_MuonError" {
bgcolor=aliceblue;
label="";
"LHCb::UnpackRawEvent/UnpackRawEvent_MuonError" [label=<<B>LHCb::UnpackRawEvent/UnpackRawEvent_MuonError</B><BR/>BankTypes = [&#x27;MuonError&#x27;]<BR/>RawBankLocations = /Event/RawBanks/MuonError>, shape=plaintext];
"LHCb::UnpackRawEvent/UnpackRawEvent_MuonError_in_RawEventLocation" [fillcolor=deepskyblue1, label=RawEventLocation, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_MuonError" -> "LHCb::UnpackRawEvent/UnpackRawEvent_MuonError_in_RawEventLocation"  [minlen=0, style=invis];
"LHCb::UnpackRawEvent/UnpackRawEvent_MuonError_out_RawBankLocations" [fillcolor=coral1, label=RawBankLocations, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_MuonError" -> "LHCb::UnpackRawEvent/UnpackRawEvent_MuonError_out_RawBankLocations"  [minlen=0, style=invis];
}

"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" -> "LHCb::UnpackRawEvent/UnpackRawEvent_MuonError_in_RawEventLocation";
subgraph "cluster_DeterministicPrescaler/Hlt1TrackMVA_Prescaler" {
bgcolor=aliceblue;
label="";
"DeterministicPrescaler/Hlt1TrackMVA_Prescaler" [label=<<B>DeterministicPrescaler/Hlt1TrackMVA_Prescaler</B><BR/>AcceptFraction = 1.0<BR/>SeedName = Hlt1TrackMVAPrescaler>, shape=plaintext];
"DeterministicPrescaler/Hlt1TrackMVA_Prescaler_in_ODINLocation" [fillcolor=deepskyblue1, label=ODINLocation, style=filled];
"DeterministicPrescaler/Hlt1TrackMVA_Prescaler" -> "DeterministicPrescaler/Hlt1TrackMVA_Prescaler_in_ODINLocation"  [minlen=0, style=invis];
}

"createODIN/Decode_ODIN_out_ODIN" -> "DeterministicPrescaler/Hlt1TrackMVA_Prescaler_in_ODINLocation";
subgraph "cluster_createODIN/Decode_ODIN" {
bgcolor=aliceblue;
label="";
"createODIN/Decode_ODIN" [label=<<B>createODIN/Decode_ODIN</B><BR/>defaults-only>, shape=plaintext];
"createODIN/Decode_ODIN_in_RawBanks" [fillcolor=deepskyblue1, label=RawBanks, style=filled];
"createODIN/Decode_ODIN" -> "createODIN/Decode_ODIN_in_RawBanks"  [minlen=0, style=invis];
"createODIN/Decode_ODIN_out_ODIN" [fillcolor=coral1, label=ODIN, style=filled];
"createODIN/Decode_ODIN" -> "createODIN/Decode_ODIN_out_ODIN"  [minlen=0, style=invis];
}

"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_out_RawBankLocations" -> "createODIN/Decode_ODIN_in_RawBanks";
subgraph "cluster_LHCb::UnpackRawEvent/UnpackRawEvent_ODIN" {
bgcolor=aliceblue;
label="";
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN" [label=<<B>LHCb::UnpackRawEvent/UnpackRawEvent_ODIN</B><BR/>BankTypes = [&#x27;ODIN&#x27;]<BR/>RawBankLocations = /Event/RawBanks/ODIN>, shape=plaintext];
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_in_RawEventLocation" [fillcolor=deepskyblue1, label=RawEventLocation, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN" -> "LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_in_RawEventLocation"  [minlen=0, style=invis];
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_out_RawBankLocations" [fillcolor=coral1, label=RawBankLocations, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN" -> "LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_out_RawBankLocations"  [minlen=0, style=invis];
}

"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" -> "LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_in_RawEventLocation";
subgraph "cluster_Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent" {
bgcolor=aliceblue;
label="";
"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent" [label=<<B>Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent</B><BR/>Output = /Event/DAQ/RawEvent>, shape=plaintext];
"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" [fillcolor=coral1, label=Output, style=filled];
"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent" -> "Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output"  [minlen=0, style=invis];
}

subgraph "cluster_PrFilter__PrFittedForwardTracksWithPVs/PrFilter__PrFittedForwardTracksWithPVs_c4273fb1" {
bgcolor=aliceblue;
label="";
"PrFilter__PrFittedForwardTracksWithPVs/PrFilter__PrFittedForwardTracksWithPVs_c4273fb1" [label=<<B>PrFilter__PrFittedForwardTracksWithPVs/PrFilter__PrFittedForwardTracksWithPVs_c4273fb1</B><BR/>Cut = FILTER(Functor=( ( ( VALUE_OR(Value=nan) @ _CHI2DO[...]EEMOMENTUM ) ) ) ) + 2.0014800002101243 ) ) ) ) ))>, shape=plaintext];
"PrFilter__PrFittedForwardTracksWithPVs/PrFilter__PrFittedForwardTracksWithPVs_c4273fb1_in_Input" [fillcolor=deepskyblue1, label=Input, style=filled];
"PrFilter__PrFittedForwardTracksWithPVs/PrFilter__PrFittedForwardTracksWithPVs_c4273fb1" -> "PrFilter__PrFittedForwardTracksWithPVs/PrFilter__PrFittedForwardTracksWithPVs_c4273fb1_in_Input"  [minlen=0, style=invis];
"PrFilter__PrFittedForwardTracksWithPVs/PrFilter__PrFittedForwardTracksWithPVs_c4273fb1_in_Cut_PyConfDataDependencies" [fillcolor=deepskyblue1, label=Cut_PyConfDataDependencies, style=filled];
"PrFilter__PrFittedForwardTracksWithPVs/PrFilter__PrFittedForwardTracksWithPVs_c4273fb1" -> "PrFilter__PrFittedForwardTracksWithPVs/PrFilter__PrFittedForwardTracksWithPVs_c4273fb1_in_Cut_PyConfDataDependencies"  [minlen=0, style=invis];
"PrFilter__PrFittedForwardTracksWithPVs/PrFilter__PrFittedForwardTracksWithPVs_c4273fb1_out_OutputStorage" [fillcolor=coral1, label=OutputStorage, style=filled];
"PrFilter__PrFittedForwardTracksWithPVs/PrFilter__PrFittedForwardTracksWithPVs_c4273fb1" -> "PrFilter__PrFittedForwardTracksWithPVs/PrFilter__PrFittedForwardTracksWithPVs_c4273fb1_out_OutputStorage"  [minlen=0, style=invis];
"PrFilter__PrFittedForwardTracksWithPVs/PrFilter__PrFittedForwardTracksWithPVs_c4273fb1_out_Output" [fillcolor=coral1, label=Output, style=filled];
"PrFilter__PrFittedForwardTracksWithPVs/PrFilter__PrFittedForwardTracksWithPVs_c4273fb1" -> "PrFilter__PrFittedForwardTracksWithPVs/PrFilter__PrFittedForwardTracksWithPVs_c4273fb1_out_Output"  [minlen=0, style=invis];
}

"MakeZip__PrFittedForwardTracks__BestVertexRelations/MakeZip__PrFittedForwardTracks__BestVertexRelations_7f27b631_out_Output" -> "PrFilter__PrFittedForwardTracksWithPVs/PrFilter__PrFittedForwardTracksWithPVs_c4273fb1_in_Input";
subgraph "cluster_MakeZip__PrFittedForwardTracks__BestVertexRelations/MakeZip__PrFittedForwardTracks__BestVertexRelations_7f27b631" {
bgcolor=aliceblue;
label="";
"MakeZip__PrFittedForwardTracks__BestVertexRelations/MakeZip__PrFittedForwardTracks__BestVertexRelations_7f27b631" [label=<<B>MakeZip__PrFittedForwardTracks__BestVertexRelations/MakeZip__PrFittedForwardTracks__BestVertexRelations_7f27b631</B><BR/>defaults-only>, shape=plaintext];
"MakeZip__PrFittedForwardTracks__BestVertexRelations/MakeZip__PrFittedForwardTracks__BestVertexRelations_7f27b631_in_Input1" [fillcolor=deepskyblue1, label=Input1, style=filled];
"MakeZip__PrFittedForwardTracks__BestVertexRelations/MakeZip__PrFittedForwardTracks__BestVertexRelations_7f27b631" -> "MakeZip__PrFittedForwardTracks__BestVertexRelations/MakeZip__PrFittedForwardTracks__BestVertexRelations_7f27b631_in_Input1"  [minlen=0, style=invis];
"MakeZip__PrFittedForwardTracks__BestVertexRelations/MakeZip__PrFittedForwardTracks__BestVertexRelations_7f27b631_in_Input2" [fillcolor=deepskyblue1, label=Input2, style=filled];
"MakeZip__PrFittedForwardTracks__BestVertexRelations/MakeZip__PrFittedForwardTracks__BestVertexRelations_7f27b631" -> "MakeZip__PrFittedForwardTracks__BestVertexRelations/MakeZip__PrFittedForwardTracks__BestVertexRelations_7f27b631_in_Input2"  [minlen=0, style=invis];
"MakeZip__PrFittedForwardTracks__BestVertexRelations/MakeZip__PrFittedForwardTracks__BestVertexRelations_7f27b631_out_Output" [fillcolor=coral1, label=Output, style=filled];
"MakeZip__PrFittedForwardTracks__BestVertexRelations/MakeZip__PrFittedForwardTracks__BestVertexRelations_7f27b631" -> "MakeZip__PrFittedForwardTracks__BestVertexRelations/MakeZip__PrFittedForwardTracks__BestVertexRelations_7f27b631_out_Output"  [minlen=0, style=invis];
}

"VeloKalman/VeloKalman_bf73c006_out_OutputTracksLocation" -> "MakeZip__PrFittedForwardTracks__BestVertexRelations/MakeZip__PrFittedForwardTracks__BestVertexRelations_7f27b631_in_Input1";
subgraph "cluster_VeloKalman/VeloKalman_bf73c006" {
bgcolor=aliceblue;
label="";
"VeloKalman/VeloKalman_bf73c006" [label=<<B>VeloKalman/VeloKalman_bf73c006</B><BR/>defaults-only>, shape=plaintext];
"VeloKalman/VeloKalman_bf73c006_in_HitsLocation" [fillcolor=deepskyblue1, label=HitsLocation, style=filled];
"VeloKalman/VeloKalman_bf73c006" -> "VeloKalman/VeloKalman_bf73c006_in_HitsLocation"  [minlen=0, style=invis];
"VeloKalman/VeloKalman_bf73c006_in_TracksVPLocation" [fillcolor=deepskyblue1, label=TracksVPLocation, style=filled];
"VeloKalman/VeloKalman_bf73c006" -> "VeloKalman/VeloKalman_bf73c006_in_TracksVPLocation"  [minlen=0, style=invis];
"VeloKalman/VeloKalman_bf73c006_in_TracksFTLocation" [fillcolor=deepskyblue1, label=TracksFTLocation, style=filled];
"VeloKalman/VeloKalman_bf73c006" -> "VeloKalman/VeloKalman_bf73c006_in_TracksFTLocation"  [minlen=0, style=invis];
"VeloKalman/VeloKalman_bf73c006_in_UniqueIDGenerator" [fillcolor=deepskyblue1, label=UniqueIDGenerator, style=filled];
"VeloKalman/VeloKalman_bf73c006" -> "VeloKalman/VeloKalman_bf73c006_in_UniqueIDGenerator"  [minlen=0, style=invis];
"VeloKalman/VeloKalman_bf73c006_out_OutputTracksLocation" [fillcolor=coral1, label=OutputTracksLocation, style=filled];
"VeloKalman/VeloKalman_bf73c006" -> "VeloKalman/VeloKalman_bf73c006_out_OutputTracksLocation"  [minlen=0, style=invis];
}

"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_HitsLocation" -> "VeloKalman/VeloKalman_bf73c006_in_HitsLocation";
subgraph "cluster_VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651" {
bgcolor=aliceblue;
label="";
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651" [label=<<B>VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651</B><BR/>SensorMasks = (False, False, False, False, False, False, False, [...], False, False, False, False, False, False, False)<BR/>MaxScatterSeeding = 0.1<BR/>MaxScatterForwarding = 0.1<BR/>MaxScatter3hits = 0.02<BR/>SkipForward = 1>, shape=plaintext];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_in_RawBanks" [fillcolor=deepskyblue1, label=RawBanks, style=filled];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651" -> "VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_in_RawBanks"  [minlen=0, style=invis];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksLocation" [fillcolor=coral1, label=TracksLocation, style=filled];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651" -> "VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksLocation"  [minlen=0, style=invis];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksBackwardLocation" [fillcolor=coral1, label=TracksBackwardLocation, style=filled];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651" -> "VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksBackwardLocation"  [minlen=0, style=invis];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_HitsLocation" [fillcolor=coral1, label=HitsLocation, style=filled];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651" -> "VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_HitsLocation"  [minlen=0, style=invis];
}

"LHCb::UnpackRawEvent/UnpackRawEvent_VP_out_RawBankLocations" -> "VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_in_RawBanks";
subgraph "cluster_LHCb::UnpackRawEvent/UnpackRawEvent_VP" {
bgcolor=aliceblue;
label="";
"LHCb::UnpackRawEvent/UnpackRawEvent_VP" [label=<<B>LHCb::UnpackRawEvent/UnpackRawEvent_VP</B><BR/>BankTypes = [&#x27;VP&#x27;]<BR/>RawBankLocations = /Event/RawBanks/VP>, shape=plaintext];
"LHCb::UnpackRawEvent/UnpackRawEvent_VP_in_RawEventLocation" [fillcolor=deepskyblue1, label=RawEventLocation, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_VP" -> "LHCb::UnpackRawEvent/UnpackRawEvent_VP_in_RawEventLocation"  [minlen=0, style=invis];
"LHCb::UnpackRawEvent/UnpackRawEvent_VP_out_RawBankLocations" [fillcolor=coral1, label=RawBankLocations, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_VP" -> "LHCb::UnpackRawEvent/UnpackRawEvent_VP_out_RawBankLocations"  [minlen=0, style=invis];
}

"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" -> "LHCb::UnpackRawEvent/UnpackRawEvent_VP_in_RawEventLocation";
subgraph "cluster_Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent" {
bgcolor=aliceblue;
label="";
"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent" [label=<<B>Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent</B><BR/>Output = /Event/DAQ/RawEvent>, shape=plaintext];
"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" [fillcolor=coral1, label=Output, style=filled];
"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent" -> "Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output"  [minlen=0, style=invis];
}

"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksLocation" -> "VeloKalman/VeloKalman_bf73c006_in_TracksVPLocation";
"SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1_out_Output" -> "VeloKalman/VeloKalman_bf73c006_in_TracksFTLocation";
subgraph "cluster_SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1" {
bgcolor=aliceblue;
label="";
"SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1" [label=<<B>SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1</B><BR/>defaults-only>, shape=plaintext];
"SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1_in_HitsLocation" [fillcolor=deepskyblue1, label=HitsLocation, style=filled];
"SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1" -> "SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1_in_HitsLocation"  [minlen=0, style=invis];
"SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1_in_InputTracks" [fillcolor=deepskyblue1, label=InputTracks, style=filled];
"SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1" -> "SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1_in_InputTracks"  [minlen=0, style=invis];
"SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1_out_Output" [fillcolor=coral1, label=Output, style=filled];
"SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1" -> "SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1_out_Output"  [minlen=0, style=invis];
}

"SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19_out_Output" -> "SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1_in_HitsLocation";
subgraph "cluster_SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19" {
bgcolor=aliceblue;
label="";
"SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19" [label=<<B>SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19</B><BR/>defaults-only>, shape=plaintext];
"SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19_in_HitsLocation" [fillcolor=deepskyblue1, label=HitsLocation, style=filled];
"SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19" -> "SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19_in_HitsLocation"  [minlen=0, style=invis];
"SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19_out_Output" [fillcolor=coral1, label=Output, style=filled];
"SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19" -> "SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19_out_Output"  [minlen=0, style=invis];
}

"FTRawBankDecoder/FTRawBankDecoder_out_OutputLocation" -> "SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19_in_HitsLocation";
subgraph "cluster_FTRawBankDecoder/FTRawBankDecoder" {
bgcolor=aliceblue;
label="";
"FTRawBankDecoder/FTRawBankDecoder" [label=<<B>FTRawBankDecoder/FTRawBankDecoder</B><BR/>defaults-only>, shape=plaintext];
"FTRawBankDecoder/FTRawBankDecoder_in_Odin" [fillcolor=deepskyblue1, label=Odin, style=filled];
"FTRawBankDecoder/FTRawBankDecoder" -> "FTRawBankDecoder/FTRawBankDecoder_in_Odin"  [minlen=0, style=invis];
"FTRawBankDecoder/FTRawBankDecoder_in_RawBanks" [fillcolor=deepskyblue1, label=RawBanks, style=filled];
"FTRawBankDecoder/FTRawBankDecoder" -> "FTRawBankDecoder/FTRawBankDecoder_in_RawBanks"  [minlen=0, style=invis];
"FTRawBankDecoder/FTRawBankDecoder_out_OutputLocation" [fillcolor=coral1, label=OutputLocation, style=filled];
"FTRawBankDecoder/FTRawBankDecoder" -> "FTRawBankDecoder/FTRawBankDecoder_out_OutputLocation"  [minlen=0, style=invis];
}

"createODIN/Decode_ODIN_out_ODIN" -> "FTRawBankDecoder/FTRawBankDecoder_in_Odin";
subgraph "cluster_createODIN/Decode_ODIN" {
bgcolor=aliceblue;
label="";
"createODIN/Decode_ODIN" [label=<<B>createODIN/Decode_ODIN</B><BR/>defaults-only>, shape=plaintext];
"createODIN/Decode_ODIN_in_RawBanks" [fillcolor=deepskyblue1, label=RawBanks, style=filled];
"createODIN/Decode_ODIN" -> "createODIN/Decode_ODIN_in_RawBanks"  [minlen=0, style=invis];
"createODIN/Decode_ODIN_out_ODIN" [fillcolor=coral1, label=ODIN, style=filled];
"createODIN/Decode_ODIN" -> "createODIN/Decode_ODIN_out_ODIN"  [minlen=0, style=invis];
}

"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_out_RawBankLocations" -> "createODIN/Decode_ODIN_in_RawBanks";
subgraph "cluster_LHCb::UnpackRawEvent/UnpackRawEvent_ODIN" {
bgcolor=aliceblue;
label="";
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN" [label=<<B>LHCb::UnpackRawEvent/UnpackRawEvent_ODIN</B><BR/>BankTypes = [&#x27;ODIN&#x27;]<BR/>RawBankLocations = /Event/RawBanks/ODIN>, shape=plaintext];
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_in_RawEventLocation" [fillcolor=deepskyblue1, label=RawEventLocation, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN" -> "LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_in_RawEventLocation"  [minlen=0, style=invis];
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_out_RawBankLocations" [fillcolor=coral1, label=RawBankLocations, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN" -> "LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_out_RawBankLocations"  [minlen=0, style=invis];
}

"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" -> "LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_in_RawEventLocation";
"LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster_out_RawBankLocations" -> "FTRawBankDecoder/FTRawBankDecoder_in_RawBanks";
subgraph "cluster_LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster" {
bgcolor=aliceblue;
label="";
"LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster" [label=<<B>LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster</B><BR/>BankTypes = [&#x27;FTCluster&#x27;]<BR/>RawBankLocations = /Event/RawBanks/FTCluster>, shape=plaintext];
"LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster_in_RawEventLocation" [fillcolor=deepskyblue1, label=RawEventLocation, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster" -> "LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster_in_RawEventLocation"  [minlen=0, style=invis];
"LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster_out_RawBankLocations" [fillcolor=coral1, label=RawBankLocations, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster" -> "LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster_out_RawBankLocations"  [minlen=0, style=invis];
}

"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" -> "LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster_in_RawEventLocation";
"PrVeloUT/PrVeloUT_4eab5c1b_out_OutputTracksName" -> "SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1_in_InputTracks";
subgraph "cluster_PrVeloUT/PrVeloUT_4eab5c1b" {
bgcolor=aliceblue;
label="";
"PrVeloUT/PrVeloUT_4eab5c1b" [label=<<B>PrVeloUT/PrVeloUT_4eab5c1b</B><BR/>defaults-only>, shape=plaintext];
"PrVeloUT/PrVeloUT_4eab5c1b_in_InputTracksName" [fillcolor=deepskyblue1, label=InputTracksName, style=filled];
"PrVeloUT/PrVeloUT_4eab5c1b" -> "PrVeloUT/PrVeloUT_4eab5c1b_in_InputTracksName"  [minlen=0, style=invis];
"PrVeloUT/PrVeloUT_4eab5c1b_in_UTHits" [fillcolor=deepskyblue1, label=UTHits, style=filled];
"PrVeloUT/PrVeloUT_4eab5c1b" -> "PrVeloUT/PrVeloUT_4eab5c1b_in_UTHits"  [minlen=0, style=invis];
"PrVeloUT/PrVeloUT_4eab5c1b_out_OutputTracksName" [fillcolor=coral1, label=OutputTracksName, style=filled];
"PrVeloUT/PrVeloUT_4eab5c1b" -> "PrVeloUT/PrVeloUT_4eab5c1b_out_OutputTracksName"  [minlen=0, style=invis];
}

"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksLocation" -> "PrVeloUT/PrVeloUT_4eab5c1b_in_InputTracksName";
"PrStorePrUTHits/PrStorePrUTHits_df75b912_out_UTHitsLocation" -> "PrVeloUT/PrVeloUT_4eab5c1b_in_UTHits";
subgraph "cluster_PrStorePrUTHits/PrStorePrUTHits_df75b912" {
bgcolor=aliceblue;
label="";
"PrStorePrUTHits/PrStorePrUTHits_df75b912" [label=<<B>PrStorePrUTHits/PrStorePrUTHits_df75b912</B><BR/>isCluster = True<BR/>positionMethod = GeoWeighting>, shape=plaintext];
"PrStorePrUTHits/PrStorePrUTHits_df75b912_in_RawBanks" [fillcolor=deepskyblue1, label=RawBanks, style=filled];
"PrStorePrUTHits/PrStorePrUTHits_df75b912" -> "PrStorePrUTHits/PrStorePrUTHits_df75b912_in_RawBanks"  [minlen=0, style=invis];
"PrStorePrUTHits/PrStorePrUTHits_df75b912_out_UTHitsLocation" [fillcolor=coral1, label=UTHitsLocation, style=filled];
"PrStorePrUTHits/PrStorePrUTHits_df75b912" -> "PrStorePrUTHits/PrStorePrUTHits_df75b912_out_UTHitsLocation"  [minlen=0, style=invis];
}

"LHCb::UnpackRawEvent/UnpackRawEvent_UT_out_RawBankLocations" -> "PrStorePrUTHits/PrStorePrUTHits_df75b912_in_RawBanks";
subgraph "cluster_LHCb::UnpackRawEvent/UnpackRawEvent_UT" {
bgcolor=aliceblue;
label="";
"LHCb::UnpackRawEvent/UnpackRawEvent_UT" [label=<<B>LHCb::UnpackRawEvent/UnpackRawEvent_UT</B><BR/>BankTypes = [&#x27;UT&#x27;]<BR/>RawBankLocations = /Event/RawBanks/UT>, shape=plaintext];
"LHCb::UnpackRawEvent/UnpackRawEvent_UT_in_RawEventLocation" [fillcolor=deepskyblue1, label=RawEventLocation, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_UT" -> "LHCb::UnpackRawEvent/UnpackRawEvent_UT_in_RawEventLocation"  [minlen=0, style=invis];
"LHCb::UnpackRawEvent/UnpackRawEvent_UT_out_RawBankLocations" [fillcolor=coral1, label=RawBankLocations, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_UT" -> "LHCb::UnpackRawEvent/UnpackRawEvent_UT_out_RawBankLocations"  [minlen=0, style=invis];
}

"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" -> "LHCb::UnpackRawEvent/UnpackRawEvent_UT_in_RawEventLocation";
"UniqueIDGeneratorAlg/UniqueIDGeneratorAlg_26e527e9_out_Output" -> "VeloKalman/VeloKalman_bf73c006_in_UniqueIDGenerator";
subgraph "cluster_UniqueIDGeneratorAlg/UniqueIDGeneratorAlg_26e527e9" {
bgcolor=aliceblue;
label="";
"UniqueIDGeneratorAlg/UniqueIDGeneratorAlg_26e527e9" [label=<<B>UniqueIDGeneratorAlg/UniqueIDGeneratorAlg_26e527e9</B><BR/>defaults-only>, shape=plaintext];
"UniqueIDGeneratorAlg/UniqueIDGeneratorAlg_26e527e9_out_Output" [fillcolor=coral1, label=Output, style=filled];
"UniqueIDGeneratorAlg/UniqueIDGeneratorAlg_26e527e9" -> "UniqueIDGeneratorAlg/UniqueIDGeneratorAlg_26e527e9_out_Output"  [minlen=0, style=invis];
}

"MakePVRelations__PrFittedForwardTracks/MakePVRelations__PrFittedForwardTracks_6a2c6809_out_Output" -> "MakeZip__PrFittedForwardTracks__BestVertexRelations/MakeZip__PrFittedForwardTracks__BestVertexRelations_7f27b631_in_Input2";
subgraph "cluster_MakePVRelations__PrFittedForwardTracks/MakePVRelations__PrFittedForwardTracks_6a2c6809" {
bgcolor=aliceblue;
label="";
"MakePVRelations__PrFittedForwardTracks/MakePVRelations__PrFittedForwardTracks_6a2c6809" [label=<<B>MakePVRelations__PrFittedForwardTracks/MakePVRelations__PrFittedForwardTracks_6a2c6809</B><BR/>defaults-only>, shape=plaintext];
"MakePVRelations__PrFittedForwardTracks/MakePVRelations__PrFittedForwardTracks_6a2c6809_in_Input" [fillcolor=deepskyblue1, label=Input, style=filled];
"MakePVRelations__PrFittedForwardTracks/MakePVRelations__PrFittedForwardTracks_6a2c6809" -> "MakePVRelations__PrFittedForwardTracks/MakePVRelations__PrFittedForwardTracks_6a2c6809_in_Input"  [minlen=0, style=invis];
"MakePVRelations__PrFittedForwardTracks/MakePVRelations__PrFittedForwardTracks_6a2c6809_in_InputVertices" [fillcolor=deepskyblue1, label=InputVertices, style=filled];
"MakePVRelations__PrFittedForwardTracks/MakePVRelations__PrFittedForwardTracks_6a2c6809" -> "MakePVRelations__PrFittedForwardTracks/MakePVRelations__PrFittedForwardTracks_6a2c6809_in_InputVertices"  [minlen=0, style=invis];
"MakePVRelations__PrFittedForwardTracks/MakePVRelations__PrFittedForwardTracks_6a2c6809_out_Output" [fillcolor=coral1, label=Output, style=filled];
"MakePVRelations__PrFittedForwardTracks/MakePVRelations__PrFittedForwardTracks_6a2c6809" -> "MakePVRelations__PrFittedForwardTracks/MakePVRelations__PrFittedForwardTracks_6a2c6809_out_Output"  [minlen=0, style=invis];
}

"VeloKalman/VeloKalman_bf73c006_out_OutputTracksLocation" -> "MakePVRelations__PrFittedForwardTracks/MakePVRelations__PrFittedForwardTracks_6a2c6809_in_Input";
"TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_out_OutputVertices" -> "MakePVRelations__PrFittedForwardTracks/MakePVRelations__PrFittedForwardTracks_6a2c6809_in_InputVertices";
subgraph "cluster_TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c" {
bgcolor=aliceblue;
label="";
"TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c" [label=<<B>TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c</B><BR/>MinZ = -600.0>, shape=plaintext];
"TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_in_TracksLocation" [fillcolor=deepskyblue1, label=TracksLocation, style=filled];
"TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c" -> "TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_in_TracksLocation"  [minlen=0, style=invis];
"TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_in_TracksBackwardLocation" [fillcolor=deepskyblue1, label=TracksBackwardLocation, style=filled];
"TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c" -> "TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_in_TracksBackwardLocation"  [minlen=0, style=invis];
"TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_out_OutputVertices" [fillcolor=coral1, label=OutputVertices, style=filled];
"TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c" -> "TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_out_OutputVertices"  [minlen=0, style=invis];
}

"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksLocation" -> "TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_in_TracksLocation";
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksBackwardLocation" -> "TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_in_TracksBackwardLocation";
"TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_out_OutputVertices" -> "PrFilter__PrFittedForwardTracksWithPVs/PrFilter__PrFittedForwardTracksWithPVs_c4273fb1_in_Cut_PyConfDataDependencies";
subgraph "cluster_fromV3TrackWithPVsV1TrackVector/fromV3TrackWithPVsV1TrackVector_30798de1" {
bgcolor=aliceblue;
label="";
"fromV3TrackWithPVsV1TrackVector/fromV3TrackWithPVsV1TrackVector_30798de1" [label=<<B>fromV3TrackWithPVsV1TrackVector/fromV3TrackWithPVsV1TrackVector_30798de1</B><BR/>defaults-only>, shape=plaintext];
"fromV3TrackWithPVsV1TrackVector/fromV3TrackWithPVsV1TrackVector_30798de1_in_InputTracks" [fillcolor=deepskyblue1, label=InputTracks, style=filled];
"fromV3TrackWithPVsV1TrackVector/fromV3TrackWithPVsV1TrackVector_30798de1" -> "fromV3TrackWithPVsV1TrackVector/fromV3TrackWithPVsV1TrackVector_30798de1_in_InputTracks"  [minlen=0, style=invis];
"fromV3TrackWithPVsV1TrackVector/fromV3TrackWithPVsV1TrackVector_30798de1_out_OutputTracks" [fillcolor=coral1, label=OutputTracks, style=filled];
"fromV3TrackWithPVsV1TrackVector/fromV3TrackWithPVsV1TrackVector_30798de1" -> "fromV3TrackWithPVsV1TrackVector/fromV3TrackWithPVsV1TrackVector_30798de1_out_OutputTracks"  [minlen=0, style=invis];
}

"PrFilter__PrFittedForwardTracksWithPVs/PrFilter__PrFittedForwardTracksWithPVs_c4273fb1_out_Output" -> "fromV3TrackWithPVsV1TrackVector/fromV3TrackWithPVsV1TrackVector_30798de1_in_InputTracks";
subgraph "cluster_PrFilter__PrFittedForwardTracksWithPVs/PrFilter__PrFittedForwardTracksWithPVs_c4273fb1" {
bgcolor=aliceblue;
label="";
"PrFilter__PrFittedForwardTracksWithPVs/PrFilter__PrFittedForwardTracksWithPVs_c4273fb1" [label=<<B>PrFilter__PrFittedForwardTracksWithPVs/PrFilter__PrFittedForwardTracksWithPVs_c4273fb1</B><BR/>Cut = FILTER(Functor=( ( ( VALUE_OR(Value=nan) @ _CHI2DO[...]EEMOMENTUM ) ) ) ) + 2.0014800002101243 ) ) ) ) ))>, shape=plaintext];
"PrFilter__PrFittedForwardTracksWithPVs/PrFilter__PrFittedForwardTracksWithPVs_c4273fb1_in_Input" [fillcolor=deepskyblue1, label=Input, style=filled];
"PrFilter__PrFittedForwardTracksWithPVs/PrFilter__PrFittedForwardTracksWithPVs_c4273fb1" -> "PrFilter__PrFittedForwardTracksWithPVs/PrFilter__PrFittedForwardTracksWithPVs_c4273fb1_in_Input"  [minlen=0, style=invis];
"PrFilter__PrFittedForwardTracksWithPVs/PrFilter__PrFittedForwardTracksWithPVs_c4273fb1_in_Cut_PyConfDataDependencies" [fillcolor=deepskyblue1, label=Cut_PyConfDataDependencies, style=filled];
"PrFilter__PrFittedForwardTracksWithPVs/PrFilter__PrFittedForwardTracksWithPVs_c4273fb1" -> "PrFilter__PrFittedForwardTracksWithPVs/PrFilter__PrFittedForwardTracksWithPVs_c4273fb1_in_Cut_PyConfDataDependencies"  [minlen=0, style=invis];
"PrFilter__PrFittedForwardTracksWithPVs/PrFilter__PrFittedForwardTracksWithPVs_c4273fb1_out_OutputStorage" [fillcolor=coral1, label=OutputStorage, style=filled];
"PrFilter__PrFittedForwardTracksWithPVs/PrFilter__PrFittedForwardTracksWithPVs_c4273fb1" -> "PrFilter__PrFittedForwardTracksWithPVs/PrFilter__PrFittedForwardTracksWithPVs_c4273fb1_out_OutputStorage"  [minlen=0, style=invis];
"PrFilter__PrFittedForwardTracksWithPVs/PrFilter__PrFittedForwardTracksWithPVs_c4273fb1_out_Output" [fillcolor=coral1, label=Output, style=filled];
"PrFilter__PrFittedForwardTracksWithPVs/PrFilter__PrFittedForwardTracksWithPVs_c4273fb1" -> "PrFilter__PrFittedForwardTracksWithPVs/PrFilter__PrFittedForwardTracksWithPVs_c4273fb1_out_Output"  [minlen=0, style=invis];
}

"MakeZip__PrFittedForwardTracks__BestVertexRelations/MakeZip__PrFittedForwardTracks__BestVertexRelations_7f27b631_out_Output" -> "PrFilter__PrFittedForwardTracksWithPVs/PrFilter__PrFittedForwardTracksWithPVs_c4273fb1_in_Input";
subgraph "cluster_MakeZip__PrFittedForwardTracks__BestVertexRelations/MakeZip__PrFittedForwardTracks__BestVertexRelations_7f27b631" {
bgcolor=aliceblue;
label="";
"MakeZip__PrFittedForwardTracks__BestVertexRelations/MakeZip__PrFittedForwardTracks__BestVertexRelations_7f27b631" [label=<<B>MakeZip__PrFittedForwardTracks__BestVertexRelations/MakeZip__PrFittedForwardTracks__BestVertexRelations_7f27b631</B><BR/>defaults-only>, shape=plaintext];
"MakeZip__PrFittedForwardTracks__BestVertexRelations/MakeZip__PrFittedForwardTracks__BestVertexRelations_7f27b631_in_Input1" [fillcolor=deepskyblue1, label=Input1, style=filled];
"MakeZip__PrFittedForwardTracks__BestVertexRelations/MakeZip__PrFittedForwardTracks__BestVertexRelations_7f27b631" -> "MakeZip__PrFittedForwardTracks__BestVertexRelations/MakeZip__PrFittedForwardTracks__BestVertexRelations_7f27b631_in_Input1"  [minlen=0, style=invis];
"MakeZip__PrFittedForwardTracks__BestVertexRelations/MakeZip__PrFittedForwardTracks__BestVertexRelations_7f27b631_in_Input2" [fillcolor=deepskyblue1, label=Input2, style=filled];
"MakeZip__PrFittedForwardTracks__BestVertexRelations/MakeZip__PrFittedForwardTracks__BestVertexRelations_7f27b631" -> "MakeZip__PrFittedForwardTracks__BestVertexRelations/MakeZip__PrFittedForwardTracks__BestVertexRelations_7f27b631_in_Input2"  [minlen=0, style=invis];
"MakeZip__PrFittedForwardTracks__BestVertexRelations/MakeZip__PrFittedForwardTracks__BestVertexRelations_7f27b631_out_Output" [fillcolor=coral1, label=Output, style=filled];
"MakeZip__PrFittedForwardTracks__BestVertexRelations/MakeZip__PrFittedForwardTracks__BestVertexRelations_7f27b631" -> "MakeZip__PrFittedForwardTracks__BestVertexRelations/MakeZip__PrFittedForwardTracks__BestVertexRelations_7f27b631_out_Output"  [minlen=0, style=invis];
}

"VeloKalman/VeloKalman_bf73c006_out_OutputTracksLocation" -> "MakeZip__PrFittedForwardTracks__BestVertexRelations/MakeZip__PrFittedForwardTracks__BestVertexRelations_7f27b631_in_Input1";
subgraph "cluster_VeloKalman/VeloKalman_bf73c006" {
bgcolor=aliceblue;
label="";
"VeloKalman/VeloKalman_bf73c006" [label=<<B>VeloKalman/VeloKalman_bf73c006</B><BR/>defaults-only>, shape=plaintext];
"VeloKalman/VeloKalman_bf73c006_in_HitsLocation" [fillcolor=deepskyblue1, label=HitsLocation, style=filled];
"VeloKalman/VeloKalman_bf73c006" -> "VeloKalman/VeloKalman_bf73c006_in_HitsLocation"  [minlen=0, style=invis];
"VeloKalman/VeloKalman_bf73c006_in_TracksVPLocation" [fillcolor=deepskyblue1, label=TracksVPLocation, style=filled];
"VeloKalman/VeloKalman_bf73c006" -> "VeloKalman/VeloKalman_bf73c006_in_TracksVPLocation"  [minlen=0, style=invis];
"VeloKalman/VeloKalman_bf73c006_in_TracksFTLocation" [fillcolor=deepskyblue1, label=TracksFTLocation, style=filled];
"VeloKalman/VeloKalman_bf73c006" -> "VeloKalman/VeloKalman_bf73c006_in_TracksFTLocation"  [minlen=0, style=invis];
"VeloKalman/VeloKalman_bf73c006_in_UniqueIDGenerator" [fillcolor=deepskyblue1, label=UniqueIDGenerator, style=filled];
"VeloKalman/VeloKalman_bf73c006" -> "VeloKalman/VeloKalman_bf73c006_in_UniqueIDGenerator"  [minlen=0, style=invis];
"VeloKalman/VeloKalman_bf73c006_out_OutputTracksLocation" [fillcolor=coral1, label=OutputTracksLocation, style=filled];
"VeloKalman/VeloKalman_bf73c006" -> "VeloKalman/VeloKalman_bf73c006_out_OutputTracksLocation"  [minlen=0, style=invis];
}

"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_HitsLocation" -> "VeloKalman/VeloKalman_bf73c006_in_HitsLocation";
subgraph "cluster_VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651" {
bgcolor=aliceblue;
label="";
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651" [label=<<B>VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651</B><BR/>SensorMasks = (False, False, False, False, False, False, False, [...], False, False, False, False, False, False, False)<BR/>MaxScatterSeeding = 0.1<BR/>MaxScatterForwarding = 0.1<BR/>MaxScatter3hits = 0.02<BR/>SkipForward = 1>, shape=plaintext];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_in_RawBanks" [fillcolor=deepskyblue1, label=RawBanks, style=filled];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651" -> "VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_in_RawBanks"  [minlen=0, style=invis];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksLocation" [fillcolor=coral1, label=TracksLocation, style=filled];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651" -> "VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksLocation"  [minlen=0, style=invis];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksBackwardLocation" [fillcolor=coral1, label=TracksBackwardLocation, style=filled];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651" -> "VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksBackwardLocation"  [minlen=0, style=invis];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_HitsLocation" [fillcolor=coral1, label=HitsLocation, style=filled];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651" -> "VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_HitsLocation"  [minlen=0, style=invis];
}

"LHCb::UnpackRawEvent/UnpackRawEvent_VP_out_RawBankLocations" -> "VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_in_RawBanks";
subgraph "cluster_LHCb::UnpackRawEvent/UnpackRawEvent_VP" {
bgcolor=aliceblue;
label="";
"LHCb::UnpackRawEvent/UnpackRawEvent_VP" [label=<<B>LHCb::UnpackRawEvent/UnpackRawEvent_VP</B><BR/>BankTypes = [&#x27;VP&#x27;]<BR/>RawBankLocations = /Event/RawBanks/VP>, shape=plaintext];
"LHCb::UnpackRawEvent/UnpackRawEvent_VP_in_RawEventLocation" [fillcolor=deepskyblue1, label=RawEventLocation, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_VP" -> "LHCb::UnpackRawEvent/UnpackRawEvent_VP_in_RawEventLocation"  [minlen=0, style=invis];
"LHCb::UnpackRawEvent/UnpackRawEvent_VP_out_RawBankLocations" [fillcolor=coral1, label=RawBankLocations, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_VP" -> "LHCb::UnpackRawEvent/UnpackRawEvent_VP_out_RawBankLocations"  [minlen=0, style=invis];
}

"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" -> "LHCb::UnpackRawEvent/UnpackRawEvent_VP_in_RawEventLocation";
subgraph "cluster_Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent" {
bgcolor=aliceblue;
label="";
"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent" [label=<<B>Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent</B><BR/>Output = /Event/DAQ/RawEvent>, shape=plaintext];
"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" [fillcolor=coral1, label=Output, style=filled];
"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent" -> "Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output"  [minlen=0, style=invis];
}

"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksLocation" -> "VeloKalman/VeloKalman_bf73c006_in_TracksVPLocation";
"SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1_out_Output" -> "VeloKalman/VeloKalman_bf73c006_in_TracksFTLocation";
subgraph "cluster_SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1" {
bgcolor=aliceblue;
label="";
"SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1" [label=<<B>SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1</B><BR/>defaults-only>, shape=plaintext];
"SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1_in_HitsLocation" [fillcolor=deepskyblue1, label=HitsLocation, style=filled];
"SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1" -> "SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1_in_HitsLocation"  [minlen=0, style=invis];
"SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1_in_InputTracks" [fillcolor=deepskyblue1, label=InputTracks, style=filled];
"SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1" -> "SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1_in_InputTracks"  [minlen=0, style=invis];
"SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1_out_Output" [fillcolor=coral1, label=Output, style=filled];
"SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1" -> "SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1_out_Output"  [minlen=0, style=invis];
}

"SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19_out_Output" -> "SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1_in_HitsLocation";
subgraph "cluster_SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19" {
bgcolor=aliceblue;
label="";
"SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19" [label=<<B>SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19</B><BR/>defaults-only>, shape=plaintext];
"SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19_in_HitsLocation" [fillcolor=deepskyblue1, label=HitsLocation, style=filled];
"SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19" -> "SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19_in_HitsLocation"  [minlen=0, style=invis];
"SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19_out_Output" [fillcolor=coral1, label=Output, style=filled];
"SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19" -> "SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19_out_Output"  [minlen=0, style=invis];
}

"FTRawBankDecoder/FTRawBankDecoder_out_OutputLocation" -> "SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19_in_HitsLocation";
subgraph "cluster_FTRawBankDecoder/FTRawBankDecoder" {
bgcolor=aliceblue;
label="";
"FTRawBankDecoder/FTRawBankDecoder" [label=<<B>FTRawBankDecoder/FTRawBankDecoder</B><BR/>defaults-only>, shape=plaintext];
"FTRawBankDecoder/FTRawBankDecoder_in_Odin" [fillcolor=deepskyblue1, label=Odin, style=filled];
"FTRawBankDecoder/FTRawBankDecoder" -> "FTRawBankDecoder/FTRawBankDecoder_in_Odin"  [minlen=0, style=invis];
"FTRawBankDecoder/FTRawBankDecoder_in_RawBanks" [fillcolor=deepskyblue1, label=RawBanks, style=filled];
"FTRawBankDecoder/FTRawBankDecoder" -> "FTRawBankDecoder/FTRawBankDecoder_in_RawBanks"  [minlen=0, style=invis];
"FTRawBankDecoder/FTRawBankDecoder_out_OutputLocation" [fillcolor=coral1, label=OutputLocation, style=filled];
"FTRawBankDecoder/FTRawBankDecoder" -> "FTRawBankDecoder/FTRawBankDecoder_out_OutputLocation"  [minlen=0, style=invis];
}

"createODIN/Decode_ODIN_out_ODIN" -> "FTRawBankDecoder/FTRawBankDecoder_in_Odin";
subgraph "cluster_createODIN/Decode_ODIN" {
bgcolor=aliceblue;
label="";
"createODIN/Decode_ODIN" [label=<<B>createODIN/Decode_ODIN</B><BR/>defaults-only>, shape=plaintext];
"createODIN/Decode_ODIN_in_RawBanks" [fillcolor=deepskyblue1, label=RawBanks, style=filled];
"createODIN/Decode_ODIN" -> "createODIN/Decode_ODIN_in_RawBanks"  [minlen=0, style=invis];
"createODIN/Decode_ODIN_out_ODIN" [fillcolor=coral1, label=ODIN, style=filled];
"createODIN/Decode_ODIN" -> "createODIN/Decode_ODIN_out_ODIN"  [minlen=0, style=invis];
}

"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_out_RawBankLocations" -> "createODIN/Decode_ODIN_in_RawBanks";
subgraph "cluster_LHCb::UnpackRawEvent/UnpackRawEvent_ODIN" {
bgcolor=aliceblue;
label="";
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN" [label=<<B>LHCb::UnpackRawEvent/UnpackRawEvent_ODIN</B><BR/>BankTypes = [&#x27;ODIN&#x27;]<BR/>RawBankLocations = /Event/RawBanks/ODIN>, shape=plaintext];
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_in_RawEventLocation" [fillcolor=deepskyblue1, label=RawEventLocation, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN" -> "LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_in_RawEventLocation"  [minlen=0, style=invis];
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_out_RawBankLocations" [fillcolor=coral1, label=RawBankLocations, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN" -> "LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_out_RawBankLocations"  [minlen=0, style=invis];
}

"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" -> "LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_in_RawEventLocation";
"LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster_out_RawBankLocations" -> "FTRawBankDecoder/FTRawBankDecoder_in_RawBanks";
subgraph "cluster_LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster" {
bgcolor=aliceblue;
label="";
"LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster" [label=<<B>LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster</B><BR/>BankTypes = [&#x27;FTCluster&#x27;]<BR/>RawBankLocations = /Event/RawBanks/FTCluster>, shape=plaintext];
"LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster_in_RawEventLocation" [fillcolor=deepskyblue1, label=RawEventLocation, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster" -> "LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster_in_RawEventLocation"  [minlen=0, style=invis];
"LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster_out_RawBankLocations" [fillcolor=coral1, label=RawBankLocations, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster" -> "LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster_out_RawBankLocations"  [minlen=0, style=invis];
}

"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" -> "LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster_in_RawEventLocation";
"PrVeloUT/PrVeloUT_4eab5c1b_out_OutputTracksName" -> "SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1_in_InputTracks";
subgraph "cluster_PrVeloUT/PrVeloUT_4eab5c1b" {
bgcolor=aliceblue;
label="";
"PrVeloUT/PrVeloUT_4eab5c1b" [label=<<B>PrVeloUT/PrVeloUT_4eab5c1b</B><BR/>defaults-only>, shape=plaintext];
"PrVeloUT/PrVeloUT_4eab5c1b_in_InputTracksName" [fillcolor=deepskyblue1, label=InputTracksName, style=filled];
"PrVeloUT/PrVeloUT_4eab5c1b" -> "PrVeloUT/PrVeloUT_4eab5c1b_in_InputTracksName"  [minlen=0, style=invis];
"PrVeloUT/PrVeloUT_4eab5c1b_in_UTHits" [fillcolor=deepskyblue1, label=UTHits, style=filled];
"PrVeloUT/PrVeloUT_4eab5c1b" -> "PrVeloUT/PrVeloUT_4eab5c1b_in_UTHits"  [minlen=0, style=invis];
"PrVeloUT/PrVeloUT_4eab5c1b_out_OutputTracksName" [fillcolor=coral1, label=OutputTracksName, style=filled];
"PrVeloUT/PrVeloUT_4eab5c1b" -> "PrVeloUT/PrVeloUT_4eab5c1b_out_OutputTracksName"  [minlen=0, style=invis];
}

"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksLocation" -> "PrVeloUT/PrVeloUT_4eab5c1b_in_InputTracksName";
"PrStorePrUTHits/PrStorePrUTHits_df75b912_out_UTHitsLocation" -> "PrVeloUT/PrVeloUT_4eab5c1b_in_UTHits";
subgraph "cluster_PrStorePrUTHits/PrStorePrUTHits_df75b912" {
bgcolor=aliceblue;
label="";
"PrStorePrUTHits/PrStorePrUTHits_df75b912" [label=<<B>PrStorePrUTHits/PrStorePrUTHits_df75b912</B><BR/>isCluster = True<BR/>positionMethod = GeoWeighting>, shape=plaintext];
"PrStorePrUTHits/PrStorePrUTHits_df75b912_in_RawBanks" [fillcolor=deepskyblue1, label=RawBanks, style=filled];
"PrStorePrUTHits/PrStorePrUTHits_df75b912" -> "PrStorePrUTHits/PrStorePrUTHits_df75b912_in_RawBanks"  [minlen=0, style=invis];
"PrStorePrUTHits/PrStorePrUTHits_df75b912_out_UTHitsLocation" [fillcolor=coral1, label=UTHitsLocation, style=filled];
"PrStorePrUTHits/PrStorePrUTHits_df75b912" -> "PrStorePrUTHits/PrStorePrUTHits_df75b912_out_UTHitsLocation"  [minlen=0, style=invis];
}

"LHCb::UnpackRawEvent/UnpackRawEvent_UT_out_RawBankLocations" -> "PrStorePrUTHits/PrStorePrUTHits_df75b912_in_RawBanks";
subgraph "cluster_LHCb::UnpackRawEvent/UnpackRawEvent_UT" {
bgcolor=aliceblue;
label="";
"LHCb::UnpackRawEvent/UnpackRawEvent_UT" [label=<<B>LHCb::UnpackRawEvent/UnpackRawEvent_UT</B><BR/>BankTypes = [&#x27;UT&#x27;]<BR/>RawBankLocations = /Event/RawBanks/UT>, shape=plaintext];
"LHCb::UnpackRawEvent/UnpackRawEvent_UT_in_RawEventLocation" [fillcolor=deepskyblue1, label=RawEventLocation, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_UT" -> "LHCb::UnpackRawEvent/UnpackRawEvent_UT_in_RawEventLocation"  [minlen=0, style=invis];
"LHCb::UnpackRawEvent/UnpackRawEvent_UT_out_RawBankLocations" [fillcolor=coral1, label=RawBankLocations, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_UT" -> "LHCb::UnpackRawEvent/UnpackRawEvent_UT_out_RawBankLocations"  [minlen=0, style=invis];
}

"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" -> "LHCb::UnpackRawEvent/UnpackRawEvent_UT_in_RawEventLocation";
"UniqueIDGeneratorAlg/UniqueIDGeneratorAlg_26e527e9_out_Output" -> "VeloKalman/VeloKalman_bf73c006_in_UniqueIDGenerator";
subgraph "cluster_UniqueIDGeneratorAlg/UniqueIDGeneratorAlg_26e527e9" {
bgcolor=aliceblue;
label="";
"UniqueIDGeneratorAlg/UniqueIDGeneratorAlg_26e527e9" [label=<<B>UniqueIDGeneratorAlg/UniqueIDGeneratorAlg_26e527e9</B><BR/>defaults-only>, shape=plaintext];
"UniqueIDGeneratorAlg/UniqueIDGeneratorAlg_26e527e9_out_Output" [fillcolor=coral1, label=Output, style=filled];
"UniqueIDGeneratorAlg/UniqueIDGeneratorAlg_26e527e9" -> "UniqueIDGeneratorAlg/UniqueIDGeneratorAlg_26e527e9_out_Output"  [minlen=0, style=invis];
}

"MakePVRelations__PrFittedForwardTracks/MakePVRelations__PrFittedForwardTracks_6a2c6809_out_Output" -> "MakeZip__PrFittedForwardTracks__BestVertexRelations/MakeZip__PrFittedForwardTracks__BestVertexRelations_7f27b631_in_Input2";
subgraph "cluster_MakePVRelations__PrFittedForwardTracks/MakePVRelations__PrFittedForwardTracks_6a2c6809" {
bgcolor=aliceblue;
label="";
"MakePVRelations__PrFittedForwardTracks/MakePVRelations__PrFittedForwardTracks_6a2c6809" [label=<<B>MakePVRelations__PrFittedForwardTracks/MakePVRelations__PrFittedForwardTracks_6a2c6809</B><BR/>defaults-only>, shape=plaintext];
"MakePVRelations__PrFittedForwardTracks/MakePVRelations__PrFittedForwardTracks_6a2c6809_in_Input" [fillcolor=deepskyblue1, label=Input, style=filled];
"MakePVRelations__PrFittedForwardTracks/MakePVRelations__PrFittedForwardTracks_6a2c6809" -> "MakePVRelations__PrFittedForwardTracks/MakePVRelations__PrFittedForwardTracks_6a2c6809_in_Input"  [minlen=0, style=invis];
"MakePVRelations__PrFittedForwardTracks/MakePVRelations__PrFittedForwardTracks_6a2c6809_in_InputVertices" [fillcolor=deepskyblue1, label=InputVertices, style=filled];
"MakePVRelations__PrFittedForwardTracks/MakePVRelations__PrFittedForwardTracks_6a2c6809" -> "MakePVRelations__PrFittedForwardTracks/MakePVRelations__PrFittedForwardTracks_6a2c6809_in_InputVertices"  [minlen=0, style=invis];
"MakePVRelations__PrFittedForwardTracks/MakePVRelations__PrFittedForwardTracks_6a2c6809_out_Output" [fillcolor=coral1, label=Output, style=filled];
"MakePVRelations__PrFittedForwardTracks/MakePVRelations__PrFittedForwardTracks_6a2c6809" -> "MakePVRelations__PrFittedForwardTracks/MakePVRelations__PrFittedForwardTracks_6a2c6809_out_Output"  [minlen=0, style=invis];
}

"VeloKalman/VeloKalman_bf73c006_out_OutputTracksLocation" -> "MakePVRelations__PrFittedForwardTracks/MakePVRelations__PrFittedForwardTracks_6a2c6809_in_Input";
"TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_out_OutputVertices" -> "MakePVRelations__PrFittedForwardTracks/MakePVRelations__PrFittedForwardTracks_6a2c6809_in_InputVertices";
subgraph "cluster_TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c" {
bgcolor=aliceblue;
label="";
"TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c" [label=<<B>TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c</B><BR/>MinZ = -600.0>, shape=plaintext];
"TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_in_TracksLocation" [fillcolor=deepskyblue1, label=TracksLocation, style=filled];
"TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c" -> "TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_in_TracksLocation"  [minlen=0, style=invis];
"TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_in_TracksBackwardLocation" [fillcolor=deepskyblue1, label=TracksBackwardLocation, style=filled];
"TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c" -> "TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_in_TracksBackwardLocation"  [minlen=0, style=invis];
"TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_out_OutputVertices" [fillcolor=coral1, label=OutputVertices, style=filled];
"TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c" -> "TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_out_OutputVertices"  [minlen=0, style=invis];
}

"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksLocation" -> "TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_in_TracksLocation";
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksBackwardLocation" -> "TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_in_TracksBackwardLocation";
"TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_out_OutputVertices" -> "PrFilter__PrFittedForwardTracksWithPVs/PrFilter__PrFittedForwardTracksWithPVs_c4273fb1_in_Cut_PyConfDataDependencies";
subgraph "cluster_DeterministicPrescaler/Hlt1TrackMuonMVA_Prescaler" {
bgcolor=aliceblue;
label="";
"DeterministicPrescaler/Hlt1TrackMuonMVA_Prescaler" [label=<<B>DeterministicPrescaler/Hlt1TrackMuonMVA_Prescaler</B><BR/>AcceptFraction = 1.0<BR/>SeedName = Hlt1TrackMuonMVAPrescaler>, shape=plaintext];
"DeterministicPrescaler/Hlt1TrackMuonMVA_Prescaler_in_ODINLocation" [fillcolor=deepskyblue1, label=ODINLocation, style=filled];
"DeterministicPrescaler/Hlt1TrackMuonMVA_Prescaler" -> "DeterministicPrescaler/Hlt1TrackMuonMVA_Prescaler_in_ODINLocation"  [minlen=0, style=invis];
}

"createODIN/Decode_ODIN_out_ODIN" -> "DeterministicPrescaler/Hlt1TrackMuonMVA_Prescaler_in_ODINLocation";
subgraph "cluster_createODIN/Decode_ODIN" {
bgcolor=aliceblue;
label="";
"createODIN/Decode_ODIN" [label=<<B>createODIN/Decode_ODIN</B><BR/>defaults-only>, shape=plaintext];
"createODIN/Decode_ODIN_in_RawBanks" [fillcolor=deepskyblue1, label=RawBanks, style=filled];
"createODIN/Decode_ODIN" -> "createODIN/Decode_ODIN_in_RawBanks"  [minlen=0, style=invis];
"createODIN/Decode_ODIN_out_ODIN" [fillcolor=coral1, label=ODIN, style=filled];
"createODIN/Decode_ODIN" -> "createODIN/Decode_ODIN_out_ODIN"  [minlen=0, style=invis];
}

"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_out_RawBankLocations" -> "createODIN/Decode_ODIN_in_RawBanks";
subgraph "cluster_LHCb::UnpackRawEvent/UnpackRawEvent_ODIN" {
bgcolor=aliceblue;
label="";
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN" [label=<<B>LHCb::UnpackRawEvent/UnpackRawEvent_ODIN</B><BR/>BankTypes = [&#x27;ODIN&#x27;]<BR/>RawBankLocations = /Event/RawBanks/ODIN>, shape=plaintext];
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_in_RawEventLocation" [fillcolor=deepskyblue1, label=RawEventLocation, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN" -> "LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_in_RawEventLocation"  [minlen=0, style=invis];
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_out_RawBankLocations" [fillcolor=coral1, label=RawBankLocations, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN" -> "LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_out_RawBankLocations"  [minlen=0, style=invis];
}

"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" -> "LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_in_RawEventLocation";
subgraph "cluster_Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent" {
bgcolor=aliceblue;
label="";
"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent" [label=<<B>Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent</B><BR/>Output = /Event/DAQ/RawEvent>, shape=plaintext];
"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" [fillcolor=coral1, label=Output, style=filled];
"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent" -> "Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output"  [minlen=0, style=invis];
}

subgraph "cluster_PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1fabecf8" {
bgcolor=aliceblue;
label="";
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1fabecf8" [label=<<B>PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1fabecf8</B><BR/>Cut = FILTER(Functor=( ISMUON &amp; ( ( RHO_COORDINATE @ THR[...]EEMOMENTUM ) ) ) ) + 2.0014800002101243 ) ) ) ) ))>, shape=plaintext];
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1fabecf8_in_Input" [fillcolor=deepskyblue1, label=Input, style=filled];
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1fabecf8" -> "PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1fabecf8_in_Input"  [minlen=0, style=invis];
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1fabecf8_in_Cut_PyConfDataDependencies" [fillcolor=deepskyblue1, label=Cut_PyConfDataDependencies, style=filled];
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1fabecf8" -> "PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1fabecf8_in_Cut_PyConfDataDependencies"  [minlen=0, style=invis];
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1fabecf8_out_OutputStorage" [fillcolor=coral1, label=OutputStorage, style=filled];
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1fabecf8" -> "PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1fabecf8_out_OutputStorage"  [minlen=0, style=invis];
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1fabecf8_out_Output" [fillcolor=coral1, label=Output, style=filled];
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1fabecf8" -> "PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1fabecf8_out_Output"  [minlen=0, style=invis];
}

"MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89_out_Output" -> "PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1fabecf8_in_Input";
subgraph "cluster_MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89" {
bgcolor=aliceblue;
label="";
"MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89" [label=<<B>MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89</B><BR/>defaults-only>, shape=plaintext];
"MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89_in_Input1" [fillcolor=deepskyblue1, label=Input1, style=filled];
"MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89" -> "MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89_in_Input1"  [minlen=0, style=invis];
"MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89_in_Input2" [fillcolor=deepskyblue1, label=Input2, style=filled];
"MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89" -> "MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89_in_Input2"  [minlen=0, style=invis];
"MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89_out_Output" [fillcolor=coral1, label=Output, style=filled];
"MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89" -> "MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89_out_Output"  [minlen=0, style=invis];
}

"VeloKalman/VeloKalman_bf73c006_out_OutputTracksLocation" -> "MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89_in_Input1";
subgraph "cluster_VeloKalman/VeloKalman_bf73c006" {
bgcolor=aliceblue;
label="";
"VeloKalman/VeloKalman_bf73c006" [label=<<B>VeloKalman/VeloKalman_bf73c006</B><BR/>defaults-only>, shape=plaintext];
"VeloKalman/VeloKalman_bf73c006_in_HitsLocation" [fillcolor=deepskyblue1, label=HitsLocation, style=filled];
"VeloKalman/VeloKalman_bf73c006" -> "VeloKalman/VeloKalman_bf73c006_in_HitsLocation"  [minlen=0, style=invis];
"VeloKalman/VeloKalman_bf73c006_in_TracksVPLocation" [fillcolor=deepskyblue1, label=TracksVPLocation, style=filled];
"VeloKalman/VeloKalman_bf73c006" -> "VeloKalman/VeloKalman_bf73c006_in_TracksVPLocation"  [minlen=0, style=invis];
"VeloKalman/VeloKalman_bf73c006_in_TracksFTLocation" [fillcolor=deepskyblue1, label=TracksFTLocation, style=filled];
"VeloKalman/VeloKalman_bf73c006" -> "VeloKalman/VeloKalman_bf73c006_in_TracksFTLocation"  [minlen=0, style=invis];
"VeloKalman/VeloKalman_bf73c006_in_UniqueIDGenerator" [fillcolor=deepskyblue1, label=UniqueIDGenerator, style=filled];
"VeloKalman/VeloKalman_bf73c006" -> "VeloKalman/VeloKalman_bf73c006_in_UniqueIDGenerator"  [minlen=0, style=invis];
"VeloKalman/VeloKalman_bf73c006_out_OutputTracksLocation" [fillcolor=coral1, label=OutputTracksLocation, style=filled];
"VeloKalman/VeloKalman_bf73c006" -> "VeloKalman/VeloKalman_bf73c006_out_OutputTracksLocation"  [minlen=0, style=invis];
}

"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_HitsLocation" -> "VeloKalman/VeloKalman_bf73c006_in_HitsLocation";
subgraph "cluster_VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651" {
bgcolor=aliceblue;
label="";
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651" [label=<<B>VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651</B><BR/>SensorMasks = (False, False, False, False, False, False, False, [...], False, False, False, False, False, False, False)<BR/>MaxScatterSeeding = 0.1<BR/>MaxScatterForwarding = 0.1<BR/>MaxScatter3hits = 0.02<BR/>SkipForward = 1>, shape=plaintext];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_in_RawBanks" [fillcolor=deepskyblue1, label=RawBanks, style=filled];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651" -> "VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_in_RawBanks"  [minlen=0, style=invis];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksLocation" [fillcolor=coral1, label=TracksLocation, style=filled];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651" -> "VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksLocation"  [minlen=0, style=invis];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksBackwardLocation" [fillcolor=coral1, label=TracksBackwardLocation, style=filled];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651" -> "VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksBackwardLocation"  [minlen=0, style=invis];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_HitsLocation" [fillcolor=coral1, label=HitsLocation, style=filled];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651" -> "VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_HitsLocation"  [minlen=0, style=invis];
}

"LHCb::UnpackRawEvent/UnpackRawEvent_VP_out_RawBankLocations" -> "VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_in_RawBanks";
subgraph "cluster_LHCb::UnpackRawEvent/UnpackRawEvent_VP" {
bgcolor=aliceblue;
label="";
"LHCb::UnpackRawEvent/UnpackRawEvent_VP" [label=<<B>LHCb::UnpackRawEvent/UnpackRawEvent_VP</B><BR/>BankTypes = [&#x27;VP&#x27;]<BR/>RawBankLocations = /Event/RawBanks/VP>, shape=plaintext];
"LHCb::UnpackRawEvent/UnpackRawEvent_VP_in_RawEventLocation" [fillcolor=deepskyblue1, label=RawEventLocation, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_VP" -> "LHCb::UnpackRawEvent/UnpackRawEvent_VP_in_RawEventLocation"  [minlen=0, style=invis];
"LHCb::UnpackRawEvent/UnpackRawEvent_VP_out_RawBankLocations" [fillcolor=coral1, label=RawBankLocations, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_VP" -> "LHCb::UnpackRawEvent/UnpackRawEvent_VP_out_RawBankLocations"  [minlen=0, style=invis];
}

"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" -> "LHCb::UnpackRawEvent/UnpackRawEvent_VP_in_RawEventLocation";
subgraph "cluster_Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent" {
bgcolor=aliceblue;
label="";
"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent" [label=<<B>Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent</B><BR/>Output = /Event/DAQ/RawEvent>, shape=plaintext];
"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" [fillcolor=coral1, label=Output, style=filled];
"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent" -> "Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output"  [minlen=0, style=invis];
}

"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksLocation" -> "VeloKalman/VeloKalman_bf73c006_in_TracksVPLocation";
"SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1_out_Output" -> "VeloKalman/VeloKalman_bf73c006_in_TracksFTLocation";
subgraph "cluster_SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1" {
bgcolor=aliceblue;
label="";
"SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1" [label=<<B>SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1</B><BR/>defaults-only>, shape=plaintext];
"SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1_in_HitsLocation" [fillcolor=deepskyblue1, label=HitsLocation, style=filled];
"SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1" -> "SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1_in_HitsLocation"  [minlen=0, style=invis];
"SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1_in_InputTracks" [fillcolor=deepskyblue1, label=InputTracks, style=filled];
"SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1" -> "SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1_in_InputTracks"  [minlen=0, style=invis];
"SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1_out_Output" [fillcolor=coral1, label=Output, style=filled];
"SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1" -> "SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1_out_Output"  [minlen=0, style=invis];
}

"SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19_out_Output" -> "SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1_in_HitsLocation";
subgraph "cluster_SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19" {
bgcolor=aliceblue;
label="";
"SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19" [label=<<B>SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19</B><BR/>defaults-only>, shape=plaintext];
"SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19_in_HitsLocation" [fillcolor=deepskyblue1, label=HitsLocation, style=filled];
"SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19" -> "SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19_in_HitsLocation"  [minlen=0, style=invis];
"SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19_out_Output" [fillcolor=coral1, label=Output, style=filled];
"SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19" -> "SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19_out_Output"  [minlen=0, style=invis];
}

"FTRawBankDecoder/FTRawBankDecoder_out_OutputLocation" -> "SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19_in_HitsLocation";
subgraph "cluster_FTRawBankDecoder/FTRawBankDecoder" {
bgcolor=aliceblue;
label="";
"FTRawBankDecoder/FTRawBankDecoder" [label=<<B>FTRawBankDecoder/FTRawBankDecoder</B><BR/>defaults-only>, shape=plaintext];
"FTRawBankDecoder/FTRawBankDecoder_in_Odin" [fillcolor=deepskyblue1, label=Odin, style=filled];
"FTRawBankDecoder/FTRawBankDecoder" -> "FTRawBankDecoder/FTRawBankDecoder_in_Odin"  [minlen=0, style=invis];
"FTRawBankDecoder/FTRawBankDecoder_in_RawBanks" [fillcolor=deepskyblue1, label=RawBanks, style=filled];
"FTRawBankDecoder/FTRawBankDecoder" -> "FTRawBankDecoder/FTRawBankDecoder_in_RawBanks"  [minlen=0, style=invis];
"FTRawBankDecoder/FTRawBankDecoder_out_OutputLocation" [fillcolor=coral1, label=OutputLocation, style=filled];
"FTRawBankDecoder/FTRawBankDecoder" -> "FTRawBankDecoder/FTRawBankDecoder_out_OutputLocation"  [minlen=0, style=invis];
}

"createODIN/Decode_ODIN_out_ODIN" -> "FTRawBankDecoder/FTRawBankDecoder_in_Odin";
subgraph "cluster_createODIN/Decode_ODIN" {
bgcolor=aliceblue;
label="";
"createODIN/Decode_ODIN" [label=<<B>createODIN/Decode_ODIN</B><BR/>defaults-only>, shape=plaintext];
"createODIN/Decode_ODIN_in_RawBanks" [fillcolor=deepskyblue1, label=RawBanks, style=filled];
"createODIN/Decode_ODIN" -> "createODIN/Decode_ODIN_in_RawBanks"  [minlen=0, style=invis];
"createODIN/Decode_ODIN_out_ODIN" [fillcolor=coral1, label=ODIN, style=filled];
"createODIN/Decode_ODIN" -> "createODIN/Decode_ODIN_out_ODIN"  [minlen=0, style=invis];
}

"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_out_RawBankLocations" -> "createODIN/Decode_ODIN_in_RawBanks";
subgraph "cluster_LHCb::UnpackRawEvent/UnpackRawEvent_ODIN" {
bgcolor=aliceblue;
label="";
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN" [label=<<B>LHCb::UnpackRawEvent/UnpackRawEvent_ODIN</B><BR/>BankTypes = [&#x27;ODIN&#x27;]<BR/>RawBankLocations = /Event/RawBanks/ODIN>, shape=plaintext];
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_in_RawEventLocation" [fillcolor=deepskyblue1, label=RawEventLocation, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN" -> "LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_in_RawEventLocation"  [minlen=0, style=invis];
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_out_RawBankLocations" [fillcolor=coral1, label=RawBankLocations, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN" -> "LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_out_RawBankLocations"  [minlen=0, style=invis];
}

"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" -> "LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_in_RawEventLocation";
"LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster_out_RawBankLocations" -> "FTRawBankDecoder/FTRawBankDecoder_in_RawBanks";
subgraph "cluster_LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster" {
bgcolor=aliceblue;
label="";
"LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster" [label=<<B>LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster</B><BR/>BankTypes = [&#x27;FTCluster&#x27;]<BR/>RawBankLocations = /Event/RawBanks/FTCluster>, shape=plaintext];
"LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster_in_RawEventLocation" [fillcolor=deepskyblue1, label=RawEventLocation, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster" -> "LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster_in_RawEventLocation"  [minlen=0, style=invis];
"LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster_out_RawBankLocations" [fillcolor=coral1, label=RawBankLocations, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster" -> "LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster_out_RawBankLocations"  [minlen=0, style=invis];
}

"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" -> "LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster_in_RawEventLocation";
"PrVeloUT/PrVeloUT_4eab5c1b_out_OutputTracksName" -> "SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1_in_InputTracks";
subgraph "cluster_PrVeloUT/PrVeloUT_4eab5c1b" {
bgcolor=aliceblue;
label="";
"PrVeloUT/PrVeloUT_4eab5c1b" [label=<<B>PrVeloUT/PrVeloUT_4eab5c1b</B><BR/>defaults-only>, shape=plaintext];
"PrVeloUT/PrVeloUT_4eab5c1b_in_InputTracksName" [fillcolor=deepskyblue1, label=InputTracksName, style=filled];
"PrVeloUT/PrVeloUT_4eab5c1b" -> "PrVeloUT/PrVeloUT_4eab5c1b_in_InputTracksName"  [minlen=0, style=invis];
"PrVeloUT/PrVeloUT_4eab5c1b_in_UTHits" [fillcolor=deepskyblue1, label=UTHits, style=filled];
"PrVeloUT/PrVeloUT_4eab5c1b" -> "PrVeloUT/PrVeloUT_4eab5c1b_in_UTHits"  [minlen=0, style=invis];
"PrVeloUT/PrVeloUT_4eab5c1b_out_OutputTracksName" [fillcolor=coral1, label=OutputTracksName, style=filled];
"PrVeloUT/PrVeloUT_4eab5c1b" -> "PrVeloUT/PrVeloUT_4eab5c1b_out_OutputTracksName"  [minlen=0, style=invis];
}

"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksLocation" -> "PrVeloUT/PrVeloUT_4eab5c1b_in_InputTracksName";
"PrStorePrUTHits/PrStorePrUTHits_df75b912_out_UTHitsLocation" -> "PrVeloUT/PrVeloUT_4eab5c1b_in_UTHits";
subgraph "cluster_PrStorePrUTHits/PrStorePrUTHits_df75b912" {
bgcolor=aliceblue;
label="";
"PrStorePrUTHits/PrStorePrUTHits_df75b912" [label=<<B>PrStorePrUTHits/PrStorePrUTHits_df75b912</B><BR/>isCluster = True<BR/>positionMethod = GeoWeighting>, shape=plaintext];
"PrStorePrUTHits/PrStorePrUTHits_df75b912_in_RawBanks" [fillcolor=deepskyblue1, label=RawBanks, style=filled];
"PrStorePrUTHits/PrStorePrUTHits_df75b912" -> "PrStorePrUTHits/PrStorePrUTHits_df75b912_in_RawBanks"  [minlen=0, style=invis];
"PrStorePrUTHits/PrStorePrUTHits_df75b912_out_UTHitsLocation" [fillcolor=coral1, label=UTHitsLocation, style=filled];
"PrStorePrUTHits/PrStorePrUTHits_df75b912" -> "PrStorePrUTHits/PrStorePrUTHits_df75b912_out_UTHitsLocation"  [minlen=0, style=invis];
}

"LHCb::UnpackRawEvent/UnpackRawEvent_UT_out_RawBankLocations" -> "PrStorePrUTHits/PrStorePrUTHits_df75b912_in_RawBanks";
subgraph "cluster_LHCb::UnpackRawEvent/UnpackRawEvent_UT" {
bgcolor=aliceblue;
label="";
"LHCb::UnpackRawEvent/UnpackRawEvent_UT" [label=<<B>LHCb::UnpackRawEvent/UnpackRawEvent_UT</B><BR/>BankTypes = [&#x27;UT&#x27;]<BR/>RawBankLocations = /Event/RawBanks/UT>, shape=plaintext];
"LHCb::UnpackRawEvent/UnpackRawEvent_UT_in_RawEventLocation" [fillcolor=deepskyblue1, label=RawEventLocation, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_UT" -> "LHCb::UnpackRawEvent/UnpackRawEvent_UT_in_RawEventLocation"  [minlen=0, style=invis];
"LHCb::UnpackRawEvent/UnpackRawEvent_UT_out_RawBankLocations" [fillcolor=coral1, label=RawBankLocations, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_UT" -> "LHCb::UnpackRawEvent/UnpackRawEvent_UT_out_RawBankLocations"  [minlen=0, style=invis];
}

"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" -> "LHCb::UnpackRawEvent/UnpackRawEvent_UT_in_RawEventLocation";
"UniqueIDGeneratorAlg/UniqueIDGeneratorAlg_26e527e9_out_Output" -> "VeloKalman/VeloKalman_bf73c006_in_UniqueIDGenerator";
subgraph "cluster_UniqueIDGeneratorAlg/UniqueIDGeneratorAlg_26e527e9" {
bgcolor=aliceblue;
label="";
"UniqueIDGeneratorAlg/UniqueIDGeneratorAlg_26e527e9" [label=<<B>UniqueIDGeneratorAlg/UniqueIDGeneratorAlg_26e527e9</B><BR/>defaults-only>, shape=plaintext];
"UniqueIDGeneratorAlg/UniqueIDGeneratorAlg_26e527e9_out_Output" [fillcolor=coral1, label=Output, style=filled];
"UniqueIDGeneratorAlg/UniqueIDGeneratorAlg_26e527e9" -> "UniqueIDGeneratorAlg/UniqueIDGeneratorAlg_26e527e9_out_Output"  [minlen=0, style=invis];
}

"MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4_out_OutputMuonPID" -> "MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89_in_Input2";
subgraph "cluster_MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4" {
bgcolor=aliceblue;
label="";
"MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4" [label=<<B>MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4</B><BR/>runMVA = False>, shape=plaintext];
"MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4_in_InputTracks" [fillcolor=deepskyblue1, label=InputTracks, style=filled];
"MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4" -> "MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4_in_InputTracks"  [minlen=0, style=invis];
"MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4_in_InputMuonHits" [fillcolor=deepskyblue1, label=InputMuonHits, style=filled];
"MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4" -> "MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4_in_InputMuonHits"  [minlen=0, style=invis];
"MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4_out_OutputMuonPID" [fillcolor=coral1, label=OutputMuonPID, style=filled];
"MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4" -> "MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4_out_OutputMuonPID"  [minlen=0, style=invis];
}

"SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1_out_Output" -> "MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4_in_InputTracks";
"MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab_out_HitContainer" -> "MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4_in_InputMuonHits";
subgraph "cluster_MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab" {
bgcolor=aliceblue;
label="";
"MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab" [label=<<B>MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab</B><BR/>defaults-only>, shape=plaintext];
"MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab_in_RawBanks" [fillcolor=deepskyblue1, label=RawBanks, style=filled];
"MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab" -> "MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab_in_RawBanks"  [minlen=0, style=invis];
"MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab_in_ErrorRawBanks" [fillcolor=deepskyblue1, label=ErrorRawBanks, style=filled];
"MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab" -> "MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab_in_ErrorRawBanks"  [minlen=0, style=invis];
"MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab_out_HitContainer" [fillcolor=coral1, label=HitContainer, style=filled];
"MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab" -> "MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab_out_HitContainer"  [minlen=0, style=invis];
}

"LHCb::UnpackRawEvent/UnpackRawEvent_Muon_out_RawBankLocations" -> "MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab_in_RawBanks";
subgraph "cluster_LHCb::UnpackRawEvent/UnpackRawEvent_Muon" {
bgcolor=aliceblue;
label="";
"LHCb::UnpackRawEvent/UnpackRawEvent_Muon" [label=<<B>LHCb::UnpackRawEvent/UnpackRawEvent_Muon</B><BR/>BankTypes = [&#x27;Muon&#x27;]<BR/>RawBankLocations = /Event/RawBanks/Muon>, shape=plaintext];
"LHCb::UnpackRawEvent/UnpackRawEvent_Muon_in_RawEventLocation" [fillcolor=deepskyblue1, label=RawEventLocation, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_Muon" -> "LHCb::UnpackRawEvent/UnpackRawEvent_Muon_in_RawEventLocation"  [minlen=0, style=invis];
"LHCb::UnpackRawEvent/UnpackRawEvent_Muon_out_RawBankLocations" [fillcolor=coral1, label=RawBankLocations, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_Muon" -> "LHCb::UnpackRawEvent/UnpackRawEvent_Muon_out_RawBankLocations"  [minlen=0, style=invis];
}

"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" -> "LHCb::UnpackRawEvent/UnpackRawEvent_Muon_in_RawEventLocation";
"LHCb::UnpackRawEvent/UnpackRawEvent_MuonError_out_RawBankLocations" -> "MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab_in_ErrorRawBanks";
subgraph "cluster_LHCb::UnpackRawEvent/UnpackRawEvent_MuonError" {
bgcolor=aliceblue;
label="";
"LHCb::UnpackRawEvent/UnpackRawEvent_MuonError" [label=<<B>LHCb::UnpackRawEvent/UnpackRawEvent_MuonError</B><BR/>BankTypes = [&#x27;MuonError&#x27;]<BR/>RawBankLocations = /Event/RawBanks/MuonError>, shape=plaintext];
"LHCb::UnpackRawEvent/UnpackRawEvent_MuonError_in_RawEventLocation" [fillcolor=deepskyblue1, label=RawEventLocation, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_MuonError" -> "LHCb::UnpackRawEvent/UnpackRawEvent_MuonError_in_RawEventLocation"  [minlen=0, style=invis];
"LHCb::UnpackRawEvent/UnpackRawEvent_MuonError_out_RawBankLocations" [fillcolor=coral1, label=RawBankLocations, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_MuonError" -> "LHCb::UnpackRawEvent/UnpackRawEvent_MuonError_out_RawBankLocations"  [minlen=0, style=invis];
}

"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" -> "LHCb::UnpackRawEvent/UnpackRawEvent_MuonError_in_RawEventLocation";
"TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_out_OutputVertices" -> "PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1fabecf8_in_Cut_PyConfDataDependencies";
subgraph "cluster_TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c" {
bgcolor=aliceblue;
label="";
"TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c" [label=<<B>TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c</B><BR/>MinZ = -600.0>, shape=plaintext];
"TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_in_TracksLocation" [fillcolor=deepskyblue1, label=TracksLocation, style=filled];
"TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c" -> "TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_in_TracksLocation"  [minlen=0, style=invis];
"TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_in_TracksBackwardLocation" [fillcolor=deepskyblue1, label=TracksBackwardLocation, style=filled];
"TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c" -> "TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_in_TracksBackwardLocation"  [minlen=0, style=invis];
"TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_out_OutputVertices" [fillcolor=coral1, label=OutputVertices, style=filled];
"TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c" -> "TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_out_OutputVertices"  [minlen=0, style=invis];
}

"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksLocation" -> "TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_in_TracksLocation";
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksBackwardLocation" -> "TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_in_TracksBackwardLocation";
subgraph "cluster_fromV3TrackWithMuonIDV1TrackVector/fromV3TrackWithMuonIDV1TrackVector_1db586a9" {
bgcolor=aliceblue;
label="";
"fromV3TrackWithMuonIDV1TrackVector/fromV3TrackWithMuonIDV1TrackVector_1db586a9" [label=<<B>fromV3TrackWithMuonIDV1TrackVector/fromV3TrackWithMuonIDV1TrackVector_1db586a9</B><BR/>defaults-only>, shape=plaintext];
"fromV3TrackWithMuonIDV1TrackVector/fromV3TrackWithMuonIDV1TrackVector_1db586a9_in_InputTracks" [fillcolor=deepskyblue1, label=InputTracks, style=filled];
"fromV3TrackWithMuonIDV1TrackVector/fromV3TrackWithMuonIDV1TrackVector_1db586a9" -> "fromV3TrackWithMuonIDV1TrackVector/fromV3TrackWithMuonIDV1TrackVector_1db586a9_in_InputTracks"  [minlen=0, style=invis];
"fromV3TrackWithMuonIDV1TrackVector/fromV3TrackWithMuonIDV1TrackVector_1db586a9_out_OutputTracks" [fillcolor=coral1, label=OutputTracks, style=filled];
"fromV3TrackWithMuonIDV1TrackVector/fromV3TrackWithMuonIDV1TrackVector_1db586a9" -> "fromV3TrackWithMuonIDV1TrackVector/fromV3TrackWithMuonIDV1TrackVector_1db586a9_out_OutputTracks"  [minlen=0, style=invis];
}

"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1fabecf8_out_Output" -> "fromV3TrackWithMuonIDV1TrackVector/fromV3TrackWithMuonIDV1TrackVector_1db586a9_in_InputTracks";
subgraph "cluster_PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1fabecf8" {
bgcolor=aliceblue;
label="";
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1fabecf8" [label=<<B>PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1fabecf8</B><BR/>Cut = FILTER(Functor=( ISMUON &amp; ( ( RHO_COORDINATE @ THR[...]EEMOMENTUM ) ) ) ) + 2.0014800002101243 ) ) ) ) ))>, shape=plaintext];
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1fabecf8_in_Input" [fillcolor=deepskyblue1, label=Input, style=filled];
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1fabecf8" -> "PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1fabecf8_in_Input"  [minlen=0, style=invis];
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1fabecf8_in_Cut_PyConfDataDependencies" [fillcolor=deepskyblue1, label=Cut_PyConfDataDependencies, style=filled];
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1fabecf8" -> "PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1fabecf8_in_Cut_PyConfDataDependencies"  [minlen=0, style=invis];
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1fabecf8_out_OutputStorage" [fillcolor=coral1, label=OutputStorage, style=filled];
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1fabecf8" -> "PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1fabecf8_out_OutputStorage"  [minlen=0, style=invis];
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1fabecf8_out_Output" [fillcolor=coral1, label=Output, style=filled];
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1fabecf8" -> "PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1fabecf8_out_Output"  [minlen=0, style=invis];
}

"MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89_out_Output" -> "PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1fabecf8_in_Input";
subgraph "cluster_MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89" {
bgcolor=aliceblue;
label="";
"MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89" [label=<<B>MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89</B><BR/>defaults-only>, shape=plaintext];
"MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89_in_Input1" [fillcolor=deepskyblue1, label=Input1, style=filled];
"MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89" -> "MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89_in_Input1"  [minlen=0, style=invis];
"MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89_in_Input2" [fillcolor=deepskyblue1, label=Input2, style=filled];
"MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89" -> "MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89_in_Input2"  [minlen=0, style=invis];
"MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89_out_Output" [fillcolor=coral1, label=Output, style=filled];
"MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89" -> "MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89_out_Output"  [minlen=0, style=invis];
}

"VeloKalman/VeloKalman_bf73c006_out_OutputTracksLocation" -> "MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89_in_Input1";
subgraph "cluster_VeloKalman/VeloKalman_bf73c006" {
bgcolor=aliceblue;
label="";
"VeloKalman/VeloKalman_bf73c006" [label=<<B>VeloKalman/VeloKalman_bf73c006</B><BR/>defaults-only>, shape=plaintext];
"VeloKalman/VeloKalman_bf73c006_in_HitsLocation" [fillcolor=deepskyblue1, label=HitsLocation, style=filled];
"VeloKalman/VeloKalman_bf73c006" -> "VeloKalman/VeloKalman_bf73c006_in_HitsLocation"  [minlen=0, style=invis];
"VeloKalman/VeloKalman_bf73c006_in_TracksVPLocation" [fillcolor=deepskyblue1, label=TracksVPLocation, style=filled];
"VeloKalman/VeloKalman_bf73c006" -> "VeloKalman/VeloKalman_bf73c006_in_TracksVPLocation"  [minlen=0, style=invis];
"VeloKalman/VeloKalman_bf73c006_in_TracksFTLocation" [fillcolor=deepskyblue1, label=TracksFTLocation, style=filled];
"VeloKalman/VeloKalman_bf73c006" -> "VeloKalman/VeloKalman_bf73c006_in_TracksFTLocation"  [minlen=0, style=invis];
"VeloKalman/VeloKalman_bf73c006_in_UniqueIDGenerator" [fillcolor=deepskyblue1, label=UniqueIDGenerator, style=filled];
"VeloKalman/VeloKalman_bf73c006" -> "VeloKalman/VeloKalman_bf73c006_in_UniqueIDGenerator"  [minlen=0, style=invis];
"VeloKalman/VeloKalman_bf73c006_out_OutputTracksLocation" [fillcolor=coral1, label=OutputTracksLocation, style=filled];
"VeloKalman/VeloKalman_bf73c006" -> "VeloKalman/VeloKalman_bf73c006_out_OutputTracksLocation"  [minlen=0, style=invis];
}

"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_HitsLocation" -> "VeloKalman/VeloKalman_bf73c006_in_HitsLocation";
subgraph "cluster_VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651" {
bgcolor=aliceblue;
label="";
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651" [label=<<B>VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651</B><BR/>SensorMasks = (False, False, False, False, False, False, False, [...], False, False, False, False, False, False, False)<BR/>MaxScatterSeeding = 0.1<BR/>MaxScatterForwarding = 0.1<BR/>MaxScatter3hits = 0.02<BR/>SkipForward = 1>, shape=plaintext];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_in_RawBanks" [fillcolor=deepskyblue1, label=RawBanks, style=filled];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651" -> "VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_in_RawBanks"  [minlen=0, style=invis];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksLocation" [fillcolor=coral1, label=TracksLocation, style=filled];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651" -> "VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksLocation"  [minlen=0, style=invis];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksBackwardLocation" [fillcolor=coral1, label=TracksBackwardLocation, style=filled];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651" -> "VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksBackwardLocation"  [minlen=0, style=invis];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_HitsLocation" [fillcolor=coral1, label=HitsLocation, style=filled];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651" -> "VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_HitsLocation"  [minlen=0, style=invis];
}

"LHCb::UnpackRawEvent/UnpackRawEvent_VP_out_RawBankLocations" -> "VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_in_RawBanks";
subgraph "cluster_LHCb::UnpackRawEvent/UnpackRawEvent_VP" {
bgcolor=aliceblue;
label="";
"LHCb::UnpackRawEvent/UnpackRawEvent_VP" [label=<<B>LHCb::UnpackRawEvent/UnpackRawEvent_VP</B><BR/>BankTypes = [&#x27;VP&#x27;]<BR/>RawBankLocations = /Event/RawBanks/VP>, shape=plaintext];
"LHCb::UnpackRawEvent/UnpackRawEvent_VP_in_RawEventLocation" [fillcolor=deepskyblue1, label=RawEventLocation, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_VP" -> "LHCb::UnpackRawEvent/UnpackRawEvent_VP_in_RawEventLocation"  [minlen=0, style=invis];
"LHCb::UnpackRawEvent/UnpackRawEvent_VP_out_RawBankLocations" [fillcolor=coral1, label=RawBankLocations, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_VP" -> "LHCb::UnpackRawEvent/UnpackRawEvent_VP_out_RawBankLocations"  [minlen=0, style=invis];
}

"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" -> "LHCb::UnpackRawEvent/UnpackRawEvent_VP_in_RawEventLocation";
subgraph "cluster_Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent" {
bgcolor=aliceblue;
label="";
"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent" [label=<<B>Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent</B><BR/>Output = /Event/DAQ/RawEvent>, shape=plaintext];
"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" [fillcolor=coral1, label=Output, style=filled];
"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent" -> "Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output"  [minlen=0, style=invis];
}

"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksLocation" -> "VeloKalman/VeloKalman_bf73c006_in_TracksVPLocation";
"SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1_out_Output" -> "VeloKalman/VeloKalman_bf73c006_in_TracksFTLocation";
subgraph "cluster_SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1" {
bgcolor=aliceblue;
label="";
"SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1" [label=<<B>SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1</B><BR/>defaults-only>, shape=plaintext];
"SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1_in_HitsLocation" [fillcolor=deepskyblue1, label=HitsLocation, style=filled];
"SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1" -> "SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1_in_HitsLocation"  [minlen=0, style=invis];
"SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1_in_InputTracks" [fillcolor=deepskyblue1, label=InputTracks, style=filled];
"SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1" -> "SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1_in_InputTracks"  [minlen=0, style=invis];
"SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1_out_Output" [fillcolor=coral1, label=Output, style=filled];
"SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1" -> "SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1_out_Output"  [minlen=0, style=invis];
}

"SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19_out_Output" -> "SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1_in_HitsLocation";
subgraph "cluster_SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19" {
bgcolor=aliceblue;
label="";
"SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19" [label=<<B>SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19</B><BR/>defaults-only>, shape=plaintext];
"SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19_in_HitsLocation" [fillcolor=deepskyblue1, label=HitsLocation, style=filled];
"SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19" -> "SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19_in_HitsLocation"  [minlen=0, style=invis];
"SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19_out_Output" [fillcolor=coral1, label=Output, style=filled];
"SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19" -> "SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19_out_Output"  [minlen=0, style=invis];
}

"FTRawBankDecoder/FTRawBankDecoder_out_OutputLocation" -> "SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19_in_HitsLocation";
subgraph "cluster_FTRawBankDecoder/FTRawBankDecoder" {
bgcolor=aliceblue;
label="";
"FTRawBankDecoder/FTRawBankDecoder" [label=<<B>FTRawBankDecoder/FTRawBankDecoder</B><BR/>defaults-only>, shape=plaintext];
"FTRawBankDecoder/FTRawBankDecoder_in_Odin" [fillcolor=deepskyblue1, label=Odin, style=filled];
"FTRawBankDecoder/FTRawBankDecoder" -> "FTRawBankDecoder/FTRawBankDecoder_in_Odin"  [minlen=0, style=invis];
"FTRawBankDecoder/FTRawBankDecoder_in_RawBanks" [fillcolor=deepskyblue1, label=RawBanks, style=filled];
"FTRawBankDecoder/FTRawBankDecoder" -> "FTRawBankDecoder/FTRawBankDecoder_in_RawBanks"  [minlen=0, style=invis];
"FTRawBankDecoder/FTRawBankDecoder_out_OutputLocation" [fillcolor=coral1, label=OutputLocation, style=filled];
"FTRawBankDecoder/FTRawBankDecoder" -> "FTRawBankDecoder/FTRawBankDecoder_out_OutputLocation"  [minlen=0, style=invis];
}

"createODIN/Decode_ODIN_out_ODIN" -> "FTRawBankDecoder/FTRawBankDecoder_in_Odin";
subgraph "cluster_createODIN/Decode_ODIN" {
bgcolor=aliceblue;
label="";
"createODIN/Decode_ODIN" [label=<<B>createODIN/Decode_ODIN</B><BR/>defaults-only>, shape=plaintext];
"createODIN/Decode_ODIN_in_RawBanks" [fillcolor=deepskyblue1, label=RawBanks, style=filled];
"createODIN/Decode_ODIN" -> "createODIN/Decode_ODIN_in_RawBanks"  [minlen=0, style=invis];
"createODIN/Decode_ODIN_out_ODIN" [fillcolor=coral1, label=ODIN, style=filled];
"createODIN/Decode_ODIN" -> "createODIN/Decode_ODIN_out_ODIN"  [minlen=0, style=invis];
}

"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_out_RawBankLocations" -> "createODIN/Decode_ODIN_in_RawBanks";
subgraph "cluster_LHCb::UnpackRawEvent/UnpackRawEvent_ODIN" {
bgcolor=aliceblue;
label="";
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN" [label=<<B>LHCb::UnpackRawEvent/UnpackRawEvent_ODIN</B><BR/>BankTypes = [&#x27;ODIN&#x27;]<BR/>RawBankLocations = /Event/RawBanks/ODIN>, shape=plaintext];
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_in_RawEventLocation" [fillcolor=deepskyblue1, label=RawEventLocation, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN" -> "LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_in_RawEventLocation"  [minlen=0, style=invis];
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_out_RawBankLocations" [fillcolor=coral1, label=RawBankLocations, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN" -> "LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_out_RawBankLocations"  [minlen=0, style=invis];
}

"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" -> "LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_in_RawEventLocation";
"LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster_out_RawBankLocations" -> "FTRawBankDecoder/FTRawBankDecoder_in_RawBanks";
subgraph "cluster_LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster" {
bgcolor=aliceblue;
label="";
"LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster" [label=<<B>LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster</B><BR/>BankTypes = [&#x27;FTCluster&#x27;]<BR/>RawBankLocations = /Event/RawBanks/FTCluster>, shape=plaintext];
"LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster_in_RawEventLocation" [fillcolor=deepskyblue1, label=RawEventLocation, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster" -> "LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster_in_RawEventLocation"  [minlen=0, style=invis];
"LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster_out_RawBankLocations" [fillcolor=coral1, label=RawBankLocations, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster" -> "LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster_out_RawBankLocations"  [minlen=0, style=invis];
}

"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" -> "LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster_in_RawEventLocation";
"PrVeloUT/PrVeloUT_4eab5c1b_out_OutputTracksName" -> "SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1_in_InputTracks";
subgraph "cluster_PrVeloUT/PrVeloUT_4eab5c1b" {
bgcolor=aliceblue;
label="";
"PrVeloUT/PrVeloUT_4eab5c1b" [label=<<B>PrVeloUT/PrVeloUT_4eab5c1b</B><BR/>defaults-only>, shape=plaintext];
"PrVeloUT/PrVeloUT_4eab5c1b_in_InputTracksName" [fillcolor=deepskyblue1, label=InputTracksName, style=filled];
"PrVeloUT/PrVeloUT_4eab5c1b" -> "PrVeloUT/PrVeloUT_4eab5c1b_in_InputTracksName"  [minlen=0, style=invis];
"PrVeloUT/PrVeloUT_4eab5c1b_in_UTHits" [fillcolor=deepskyblue1, label=UTHits, style=filled];
"PrVeloUT/PrVeloUT_4eab5c1b" -> "PrVeloUT/PrVeloUT_4eab5c1b_in_UTHits"  [minlen=0, style=invis];
"PrVeloUT/PrVeloUT_4eab5c1b_out_OutputTracksName" [fillcolor=coral1, label=OutputTracksName, style=filled];
"PrVeloUT/PrVeloUT_4eab5c1b" -> "PrVeloUT/PrVeloUT_4eab5c1b_out_OutputTracksName"  [minlen=0, style=invis];
}

"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksLocation" -> "PrVeloUT/PrVeloUT_4eab5c1b_in_InputTracksName";
"PrStorePrUTHits/PrStorePrUTHits_df75b912_out_UTHitsLocation" -> "PrVeloUT/PrVeloUT_4eab5c1b_in_UTHits";
subgraph "cluster_PrStorePrUTHits/PrStorePrUTHits_df75b912" {
bgcolor=aliceblue;
label="";
"PrStorePrUTHits/PrStorePrUTHits_df75b912" [label=<<B>PrStorePrUTHits/PrStorePrUTHits_df75b912</B><BR/>isCluster = True<BR/>positionMethod = GeoWeighting>, shape=plaintext];
"PrStorePrUTHits/PrStorePrUTHits_df75b912_in_RawBanks" [fillcolor=deepskyblue1, label=RawBanks, style=filled];
"PrStorePrUTHits/PrStorePrUTHits_df75b912" -> "PrStorePrUTHits/PrStorePrUTHits_df75b912_in_RawBanks"  [minlen=0, style=invis];
"PrStorePrUTHits/PrStorePrUTHits_df75b912_out_UTHitsLocation" [fillcolor=coral1, label=UTHitsLocation, style=filled];
"PrStorePrUTHits/PrStorePrUTHits_df75b912" -> "PrStorePrUTHits/PrStorePrUTHits_df75b912_out_UTHitsLocation"  [minlen=0, style=invis];
}

"LHCb::UnpackRawEvent/UnpackRawEvent_UT_out_RawBankLocations" -> "PrStorePrUTHits/PrStorePrUTHits_df75b912_in_RawBanks";
subgraph "cluster_LHCb::UnpackRawEvent/UnpackRawEvent_UT" {
bgcolor=aliceblue;
label="";
"LHCb::UnpackRawEvent/UnpackRawEvent_UT" [label=<<B>LHCb::UnpackRawEvent/UnpackRawEvent_UT</B><BR/>BankTypes = [&#x27;UT&#x27;]<BR/>RawBankLocations = /Event/RawBanks/UT>, shape=plaintext];
"LHCb::UnpackRawEvent/UnpackRawEvent_UT_in_RawEventLocation" [fillcolor=deepskyblue1, label=RawEventLocation, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_UT" -> "LHCb::UnpackRawEvent/UnpackRawEvent_UT_in_RawEventLocation"  [minlen=0, style=invis];
"LHCb::UnpackRawEvent/UnpackRawEvent_UT_out_RawBankLocations" [fillcolor=coral1, label=RawBankLocations, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_UT" -> "LHCb::UnpackRawEvent/UnpackRawEvent_UT_out_RawBankLocations"  [minlen=0, style=invis];
}

"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" -> "LHCb::UnpackRawEvent/UnpackRawEvent_UT_in_RawEventLocation";
"UniqueIDGeneratorAlg/UniqueIDGeneratorAlg_26e527e9_out_Output" -> "VeloKalman/VeloKalman_bf73c006_in_UniqueIDGenerator";
subgraph "cluster_UniqueIDGeneratorAlg/UniqueIDGeneratorAlg_26e527e9" {
bgcolor=aliceblue;
label="";
"UniqueIDGeneratorAlg/UniqueIDGeneratorAlg_26e527e9" [label=<<B>UniqueIDGeneratorAlg/UniqueIDGeneratorAlg_26e527e9</B><BR/>defaults-only>, shape=plaintext];
"UniqueIDGeneratorAlg/UniqueIDGeneratorAlg_26e527e9_out_Output" [fillcolor=coral1, label=Output, style=filled];
"UniqueIDGeneratorAlg/UniqueIDGeneratorAlg_26e527e9" -> "UniqueIDGeneratorAlg/UniqueIDGeneratorAlg_26e527e9_out_Output"  [minlen=0, style=invis];
}

"MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4_out_OutputMuonPID" -> "MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89_in_Input2";
subgraph "cluster_MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4" {
bgcolor=aliceblue;
label="";
"MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4" [label=<<B>MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4</B><BR/>runMVA = False>, shape=plaintext];
"MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4_in_InputTracks" [fillcolor=deepskyblue1, label=InputTracks, style=filled];
"MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4" -> "MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4_in_InputTracks"  [minlen=0, style=invis];
"MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4_in_InputMuonHits" [fillcolor=deepskyblue1, label=InputMuonHits, style=filled];
"MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4" -> "MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4_in_InputMuonHits"  [minlen=0, style=invis];
"MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4_out_OutputMuonPID" [fillcolor=coral1, label=OutputMuonPID, style=filled];
"MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4" -> "MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4_out_OutputMuonPID"  [minlen=0, style=invis];
}

"SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1_out_Output" -> "MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4_in_InputTracks";
"MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab_out_HitContainer" -> "MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4_in_InputMuonHits";
subgraph "cluster_MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab" {
bgcolor=aliceblue;
label="";
"MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab" [label=<<B>MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab</B><BR/>defaults-only>, shape=plaintext];
"MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab_in_RawBanks" [fillcolor=deepskyblue1, label=RawBanks, style=filled];
"MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab" -> "MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab_in_RawBanks"  [minlen=0, style=invis];
"MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab_in_ErrorRawBanks" [fillcolor=deepskyblue1, label=ErrorRawBanks, style=filled];
"MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab" -> "MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab_in_ErrorRawBanks"  [minlen=0, style=invis];
"MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab_out_HitContainer" [fillcolor=coral1, label=HitContainer, style=filled];
"MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab" -> "MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab_out_HitContainer"  [minlen=0, style=invis];
}

"LHCb::UnpackRawEvent/UnpackRawEvent_Muon_out_RawBankLocations" -> "MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab_in_RawBanks";
subgraph "cluster_LHCb::UnpackRawEvent/UnpackRawEvent_Muon" {
bgcolor=aliceblue;
label="";
"LHCb::UnpackRawEvent/UnpackRawEvent_Muon" [label=<<B>LHCb::UnpackRawEvent/UnpackRawEvent_Muon</B><BR/>BankTypes = [&#x27;Muon&#x27;]<BR/>RawBankLocations = /Event/RawBanks/Muon>, shape=plaintext];
"LHCb::UnpackRawEvent/UnpackRawEvent_Muon_in_RawEventLocation" [fillcolor=deepskyblue1, label=RawEventLocation, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_Muon" -> "LHCb::UnpackRawEvent/UnpackRawEvent_Muon_in_RawEventLocation"  [minlen=0, style=invis];
"LHCb::UnpackRawEvent/UnpackRawEvent_Muon_out_RawBankLocations" [fillcolor=coral1, label=RawBankLocations, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_Muon" -> "LHCb::UnpackRawEvent/UnpackRawEvent_Muon_out_RawBankLocations"  [minlen=0, style=invis];
}

"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" -> "LHCb::UnpackRawEvent/UnpackRawEvent_Muon_in_RawEventLocation";
"LHCb::UnpackRawEvent/UnpackRawEvent_MuonError_out_RawBankLocations" -> "MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab_in_ErrorRawBanks";
subgraph "cluster_LHCb::UnpackRawEvent/UnpackRawEvent_MuonError" {
bgcolor=aliceblue;
label="";
"LHCb::UnpackRawEvent/UnpackRawEvent_MuonError" [label=<<B>LHCb::UnpackRawEvent/UnpackRawEvent_MuonError</B><BR/>BankTypes = [&#x27;MuonError&#x27;]<BR/>RawBankLocations = /Event/RawBanks/MuonError>, shape=plaintext];
"LHCb::UnpackRawEvent/UnpackRawEvent_MuonError_in_RawEventLocation" [fillcolor=deepskyblue1, label=RawEventLocation, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_MuonError" -> "LHCb::UnpackRawEvent/UnpackRawEvent_MuonError_in_RawEventLocation"  [minlen=0, style=invis];
"LHCb::UnpackRawEvent/UnpackRawEvent_MuonError_out_RawBankLocations" [fillcolor=coral1, label=RawBankLocations, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_MuonError" -> "LHCb::UnpackRawEvent/UnpackRawEvent_MuonError_out_RawBankLocations"  [minlen=0, style=invis];
}

"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" -> "LHCb::UnpackRawEvent/UnpackRawEvent_MuonError_in_RawEventLocation";
"TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_out_OutputVertices" -> "PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1fabecf8_in_Cut_PyConfDataDependencies";
subgraph "cluster_TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c" {
bgcolor=aliceblue;
label="";
"TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c" [label=<<B>TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c</B><BR/>MinZ = -600.0>, shape=plaintext];
"TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_in_TracksLocation" [fillcolor=deepskyblue1, label=TracksLocation, style=filled];
"TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c" -> "TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_in_TracksLocation"  [minlen=0, style=invis];
"TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_in_TracksBackwardLocation" [fillcolor=deepskyblue1, label=TracksBackwardLocation, style=filled];
"TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c" -> "TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_in_TracksBackwardLocation"  [minlen=0, style=invis];
"TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_out_OutputVertices" [fillcolor=coral1, label=OutputVertices, style=filled];
"TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c" -> "TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_out_OutputVertices"  [minlen=0, style=invis];
}

"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksLocation" -> "TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_in_TracksLocation";
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksBackwardLocation" -> "TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_in_TracksBackwardLocation";
subgraph "cluster_DeterministicPrescaler/Hlt1TwoTrackMVA_Prescaler" {
bgcolor=aliceblue;
label="";
"DeterministicPrescaler/Hlt1TwoTrackMVA_Prescaler" [label=<<B>DeterministicPrescaler/Hlt1TwoTrackMVA_Prescaler</B><BR/>AcceptFraction = 1.0<BR/>SeedName = Hlt1TwoTrackMVAPrescaler>, shape=plaintext];
"DeterministicPrescaler/Hlt1TwoTrackMVA_Prescaler_in_ODINLocation" [fillcolor=deepskyblue1, label=ODINLocation, style=filled];
"DeterministicPrescaler/Hlt1TwoTrackMVA_Prescaler" -> "DeterministicPrescaler/Hlt1TwoTrackMVA_Prescaler_in_ODINLocation"  [minlen=0, style=invis];
}

"createODIN/Decode_ODIN_out_ODIN" -> "DeterministicPrescaler/Hlt1TwoTrackMVA_Prescaler_in_ODINLocation";
subgraph "cluster_createODIN/Decode_ODIN" {
bgcolor=aliceblue;
label="";
"createODIN/Decode_ODIN" [label=<<B>createODIN/Decode_ODIN</B><BR/>defaults-only>, shape=plaintext];
"createODIN/Decode_ODIN_in_RawBanks" [fillcolor=deepskyblue1, label=RawBanks, style=filled];
"createODIN/Decode_ODIN" -> "createODIN/Decode_ODIN_in_RawBanks"  [minlen=0, style=invis];
"createODIN/Decode_ODIN_out_ODIN" [fillcolor=coral1, label=ODIN, style=filled];
"createODIN/Decode_ODIN" -> "createODIN/Decode_ODIN_out_ODIN"  [minlen=0, style=invis];
}

"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_out_RawBankLocations" -> "createODIN/Decode_ODIN_in_RawBanks";
subgraph "cluster_LHCb::UnpackRawEvent/UnpackRawEvent_ODIN" {
bgcolor=aliceblue;
label="";
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN" [label=<<B>LHCb::UnpackRawEvent/UnpackRawEvent_ODIN</B><BR/>BankTypes = [&#x27;ODIN&#x27;]<BR/>RawBankLocations = /Event/RawBanks/ODIN>, shape=plaintext];
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_in_RawEventLocation" [fillcolor=deepskyblue1, label=RawEventLocation, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN" -> "LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_in_RawEventLocation"  [minlen=0, style=invis];
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_out_RawBankLocations" [fillcolor=coral1, label=RawBankLocations, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN" -> "LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_out_RawBankLocations"  [minlen=0, style=invis];
}

"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" -> "LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_in_RawEventLocation";
subgraph "cluster_Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent" {
bgcolor=aliceblue;
label="";
"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent" [label=<<B>Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent</B><BR/>Output = /Event/DAQ/RawEvent>, shape=plaintext];
"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" [fillcolor=coral1, label=Output, style=filled];
"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent" -> "Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output"  [minlen=0, style=invis];
}

subgraph "cluster_CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs/CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs_12f1c1a9" {
bgcolor=aliceblue;
label="";
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs/CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs_12f1c1a9" [label=<<B>CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs/CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs_12f1c1a9</B><BR/>AssumedMass = pi+<BR/>CombinationCut = ( ( ( RHO_COORDINATE @ THREEMOMENTUM ) &gt; 2000.0 ) &amp; ( MAXSDOCACHI2 &lt; 10.0 ) )<BR/>VertexCut = ( ( ( VALUE_OR(Value=nan) @ _CHI2DOF ) &lt; 10.0 ) &amp; [...]acks const&gt;&#x27;]) )&quot;)}, MVAType=MatrixNet) &gt; 0.96 ) )>, shape=plaintext];
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs/CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs_12f1c1a9_in_InputUniqueIDGenerator" [fillcolor=deepskyblue1, label=InputUniqueIDGenerator, style=filled];
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs/CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs_12f1c1a9" -> "CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs/CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs_12f1c1a9_in_InputUniqueIDGenerator"  [minlen=0, style=invis];
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs/CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs_12f1c1a9_in_InputTracks" [fillcolor=deepskyblue1, label=InputTracks, style=filled];
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs/CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs_12f1c1a9" -> "CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs/CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs_12f1c1a9_in_InputTracks"  [minlen=0, style=invis];
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs/CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs_12f1c1a9_in_CombinationCut_PyConfDataDependencies" [fillcolor=deepskyblue1, label=CombinationCut_PyConfDataDependencies, style=filled];
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs/CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs_12f1c1a9" -> "CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs/CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs_12f1c1a9_in_CombinationCut_PyConfDataDependencies"  [minlen=0, style=invis];
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs/CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs_12f1c1a9_in_VertexCut_PyConfDataDependencies" [fillcolor=deepskyblue1, label=VertexCut_PyConfDataDependencies, style=filled];
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs/CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs_12f1c1a9" -> "CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs/CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs_12f1c1a9_in_VertexCut_PyConfDataDependencies"  [minlen=0, style=invis];
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs/CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs_12f1c1a9_out_Output" [fillcolor=coral1, label=Output, style=filled];
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs/CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs_12f1c1a9" -> "CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs/CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs_12f1c1a9_out_Output"  [minlen=0, style=invis];
}

"UniqueIDGeneratorAlg/UniqueIDGeneratorAlg_26e527e9_out_Output" -> "CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs/CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs_12f1c1a9_in_InputUniqueIDGenerator";
subgraph "cluster_UniqueIDGeneratorAlg/UniqueIDGeneratorAlg_26e527e9" {
bgcolor=aliceblue;
label="";
"UniqueIDGeneratorAlg/UniqueIDGeneratorAlg_26e527e9" [label=<<B>UniqueIDGeneratorAlg/UniqueIDGeneratorAlg_26e527e9</B><BR/>defaults-only>, shape=plaintext];
"UniqueIDGeneratorAlg/UniqueIDGeneratorAlg_26e527e9_out_Output" [fillcolor=coral1, label=Output, style=filled];
"UniqueIDGeneratorAlg/UniqueIDGeneratorAlg_26e527e9" -> "UniqueIDGeneratorAlg/UniqueIDGeneratorAlg_26e527e9_out_Output"  [minlen=0, style=invis];
}

"PrFilter__PrFittedForwardTracksWithPVs/PrFilter__PrFittedForwardTracksWithPVs_a3edb65e_out_Output" -> "CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs/CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs_12f1c1a9_in_InputTracks";
subgraph "cluster_PrFilter__PrFittedForwardTracksWithPVs/PrFilter__PrFittedForwardTracksWithPVs_a3edb65e" {
bgcolor=aliceblue;
label="";
"PrFilter__PrFittedForwardTracksWithPVs/PrFilter__PrFittedForwardTracksWithPVs_a3edb65e" [label=<<B>PrFilter__PrFittedForwardTracksWithPVs/PrFilter__PrFittedForwardTracksWithPVs_a3edb65e</B><BR/>Cut = FILTER(Functor=( ( ( RHO_COORDINATE @ THREEMOMENTU[...]&#x27;]), _FORWARDARGS() ), _FORWARDARGS() ) &gt; 4.0 ) ))>, shape=plaintext];
"PrFilter__PrFittedForwardTracksWithPVs/PrFilter__PrFittedForwardTracksWithPVs_a3edb65e_in_Input" [fillcolor=deepskyblue1, label=Input, style=filled];
"PrFilter__PrFittedForwardTracksWithPVs/PrFilter__PrFittedForwardTracksWithPVs_a3edb65e" -> "PrFilter__PrFittedForwardTracksWithPVs/PrFilter__PrFittedForwardTracksWithPVs_a3edb65e_in_Input"  [minlen=0, style=invis];
"PrFilter__PrFittedForwardTracksWithPVs/PrFilter__PrFittedForwardTracksWithPVs_a3edb65e_in_Cut_PyConfDataDependencies" [fillcolor=deepskyblue1, label=Cut_PyConfDataDependencies, style=filled];
"PrFilter__PrFittedForwardTracksWithPVs/PrFilter__PrFittedForwardTracksWithPVs_a3edb65e" -> "PrFilter__PrFittedForwardTracksWithPVs/PrFilter__PrFittedForwardTracksWithPVs_a3edb65e_in_Cut_PyConfDataDependencies"  [minlen=0, style=invis];
"PrFilter__PrFittedForwardTracksWithPVs/PrFilter__PrFittedForwardTracksWithPVs_a3edb65e_out_OutputStorage" [fillcolor=coral1, label=OutputStorage, style=filled];
"PrFilter__PrFittedForwardTracksWithPVs/PrFilter__PrFittedForwardTracksWithPVs_a3edb65e" -> "PrFilter__PrFittedForwardTracksWithPVs/PrFilter__PrFittedForwardTracksWithPVs_a3edb65e_out_OutputStorage"  [minlen=0, style=invis];
"PrFilter__PrFittedForwardTracksWithPVs/PrFilter__PrFittedForwardTracksWithPVs_a3edb65e_out_Output" [fillcolor=coral1, label=Output, style=filled];
"PrFilter__PrFittedForwardTracksWithPVs/PrFilter__PrFittedForwardTracksWithPVs_a3edb65e" -> "PrFilter__PrFittedForwardTracksWithPVs/PrFilter__PrFittedForwardTracksWithPVs_a3edb65e_out_Output"  [minlen=0, style=invis];
}

"MakeZip__PrFittedForwardTracks__BestVertexRelations/MakeZip__PrFittedForwardTracks__BestVertexRelations_7f27b631_out_Output" -> "PrFilter__PrFittedForwardTracksWithPVs/PrFilter__PrFittedForwardTracksWithPVs_a3edb65e_in_Input";
subgraph "cluster_MakeZip__PrFittedForwardTracks__BestVertexRelations/MakeZip__PrFittedForwardTracks__BestVertexRelations_7f27b631" {
bgcolor=aliceblue;
label="";
"MakeZip__PrFittedForwardTracks__BestVertexRelations/MakeZip__PrFittedForwardTracks__BestVertexRelations_7f27b631" [label=<<B>MakeZip__PrFittedForwardTracks__BestVertexRelations/MakeZip__PrFittedForwardTracks__BestVertexRelations_7f27b631</B><BR/>defaults-only>, shape=plaintext];
"MakeZip__PrFittedForwardTracks__BestVertexRelations/MakeZip__PrFittedForwardTracks__BestVertexRelations_7f27b631_in_Input1" [fillcolor=deepskyblue1, label=Input1, style=filled];
"MakeZip__PrFittedForwardTracks__BestVertexRelations/MakeZip__PrFittedForwardTracks__BestVertexRelations_7f27b631" -> "MakeZip__PrFittedForwardTracks__BestVertexRelations/MakeZip__PrFittedForwardTracks__BestVertexRelations_7f27b631_in_Input1"  [minlen=0, style=invis];
"MakeZip__PrFittedForwardTracks__BestVertexRelations/MakeZip__PrFittedForwardTracks__BestVertexRelations_7f27b631_in_Input2" [fillcolor=deepskyblue1, label=Input2, style=filled];
"MakeZip__PrFittedForwardTracks__BestVertexRelations/MakeZip__PrFittedForwardTracks__BestVertexRelations_7f27b631" -> "MakeZip__PrFittedForwardTracks__BestVertexRelations/MakeZip__PrFittedForwardTracks__BestVertexRelations_7f27b631_in_Input2"  [minlen=0, style=invis];
"MakeZip__PrFittedForwardTracks__BestVertexRelations/MakeZip__PrFittedForwardTracks__BestVertexRelations_7f27b631_out_Output" [fillcolor=coral1, label=Output, style=filled];
"MakeZip__PrFittedForwardTracks__BestVertexRelations/MakeZip__PrFittedForwardTracks__BestVertexRelations_7f27b631" -> "MakeZip__PrFittedForwardTracks__BestVertexRelations/MakeZip__PrFittedForwardTracks__BestVertexRelations_7f27b631_out_Output"  [minlen=0, style=invis];
}

"VeloKalman/VeloKalman_bf73c006_out_OutputTracksLocation" -> "MakeZip__PrFittedForwardTracks__BestVertexRelations/MakeZip__PrFittedForwardTracks__BestVertexRelations_7f27b631_in_Input1";
subgraph "cluster_VeloKalman/VeloKalman_bf73c006" {
bgcolor=aliceblue;
label="";
"VeloKalman/VeloKalman_bf73c006" [label=<<B>VeloKalman/VeloKalman_bf73c006</B><BR/>defaults-only>, shape=plaintext];
"VeloKalman/VeloKalman_bf73c006_in_HitsLocation" [fillcolor=deepskyblue1, label=HitsLocation, style=filled];
"VeloKalman/VeloKalman_bf73c006" -> "VeloKalman/VeloKalman_bf73c006_in_HitsLocation"  [minlen=0, style=invis];
"VeloKalman/VeloKalman_bf73c006_in_TracksVPLocation" [fillcolor=deepskyblue1, label=TracksVPLocation, style=filled];
"VeloKalman/VeloKalman_bf73c006" -> "VeloKalman/VeloKalman_bf73c006_in_TracksVPLocation"  [minlen=0, style=invis];
"VeloKalman/VeloKalman_bf73c006_in_TracksFTLocation" [fillcolor=deepskyblue1, label=TracksFTLocation, style=filled];
"VeloKalman/VeloKalman_bf73c006" -> "VeloKalman/VeloKalman_bf73c006_in_TracksFTLocation"  [minlen=0, style=invis];
"VeloKalman/VeloKalman_bf73c006_in_UniqueIDGenerator" [fillcolor=deepskyblue1, label=UniqueIDGenerator, style=filled];
"VeloKalman/VeloKalman_bf73c006" -> "VeloKalman/VeloKalman_bf73c006_in_UniqueIDGenerator"  [minlen=0, style=invis];
"VeloKalman/VeloKalman_bf73c006_out_OutputTracksLocation" [fillcolor=coral1, label=OutputTracksLocation, style=filled];
"VeloKalman/VeloKalman_bf73c006" -> "VeloKalman/VeloKalman_bf73c006_out_OutputTracksLocation"  [minlen=0, style=invis];
}

"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_HitsLocation" -> "VeloKalman/VeloKalman_bf73c006_in_HitsLocation";
subgraph "cluster_VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651" {
bgcolor=aliceblue;
label="";
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651" [label=<<B>VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651</B><BR/>SensorMasks = (False, False, False, False, False, False, False, [...], False, False, False, False, False, False, False)<BR/>MaxScatterSeeding = 0.1<BR/>MaxScatterForwarding = 0.1<BR/>MaxScatter3hits = 0.02<BR/>SkipForward = 1>, shape=plaintext];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_in_RawBanks" [fillcolor=deepskyblue1, label=RawBanks, style=filled];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651" -> "VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_in_RawBanks"  [minlen=0, style=invis];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksLocation" [fillcolor=coral1, label=TracksLocation, style=filled];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651" -> "VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksLocation"  [minlen=0, style=invis];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksBackwardLocation" [fillcolor=coral1, label=TracksBackwardLocation, style=filled];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651" -> "VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksBackwardLocation"  [minlen=0, style=invis];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_HitsLocation" [fillcolor=coral1, label=HitsLocation, style=filled];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651" -> "VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_HitsLocation"  [minlen=0, style=invis];
}

"LHCb::UnpackRawEvent/UnpackRawEvent_VP_out_RawBankLocations" -> "VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_in_RawBanks";
subgraph "cluster_LHCb::UnpackRawEvent/UnpackRawEvent_VP" {
bgcolor=aliceblue;
label="";
"LHCb::UnpackRawEvent/UnpackRawEvent_VP" [label=<<B>LHCb::UnpackRawEvent/UnpackRawEvent_VP</B><BR/>BankTypes = [&#x27;VP&#x27;]<BR/>RawBankLocations = /Event/RawBanks/VP>, shape=plaintext];
"LHCb::UnpackRawEvent/UnpackRawEvent_VP_in_RawEventLocation" [fillcolor=deepskyblue1, label=RawEventLocation, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_VP" -> "LHCb::UnpackRawEvent/UnpackRawEvent_VP_in_RawEventLocation"  [minlen=0, style=invis];
"LHCb::UnpackRawEvent/UnpackRawEvent_VP_out_RawBankLocations" [fillcolor=coral1, label=RawBankLocations, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_VP" -> "LHCb::UnpackRawEvent/UnpackRawEvent_VP_out_RawBankLocations"  [minlen=0, style=invis];
}

"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" -> "LHCb::UnpackRawEvent/UnpackRawEvent_VP_in_RawEventLocation";
subgraph "cluster_Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent" {
bgcolor=aliceblue;
label="";
"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent" [label=<<B>Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent</B><BR/>Output = /Event/DAQ/RawEvent>, shape=plaintext];
"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" [fillcolor=coral1, label=Output, style=filled];
"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent" -> "Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output"  [minlen=0, style=invis];
}

"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksLocation" -> "VeloKalman/VeloKalman_bf73c006_in_TracksVPLocation";
"SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1_out_Output" -> "VeloKalman/VeloKalman_bf73c006_in_TracksFTLocation";
subgraph "cluster_SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1" {
bgcolor=aliceblue;
label="";
"SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1" [label=<<B>SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1</B><BR/>defaults-only>, shape=plaintext];
"SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1_in_HitsLocation" [fillcolor=deepskyblue1, label=HitsLocation, style=filled];
"SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1" -> "SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1_in_HitsLocation"  [minlen=0, style=invis];
"SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1_in_InputTracks" [fillcolor=deepskyblue1, label=InputTracks, style=filled];
"SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1" -> "SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1_in_InputTracks"  [minlen=0, style=invis];
"SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1_out_Output" [fillcolor=coral1, label=Output, style=filled];
"SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1" -> "SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1_out_Output"  [minlen=0, style=invis];
}

"SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19_out_Output" -> "SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1_in_HitsLocation";
subgraph "cluster_SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19" {
bgcolor=aliceblue;
label="";
"SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19" [label=<<B>SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19</B><BR/>defaults-only>, shape=plaintext];
"SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19_in_HitsLocation" [fillcolor=deepskyblue1, label=HitsLocation, style=filled];
"SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19" -> "SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19_in_HitsLocation"  [minlen=0, style=invis];
"SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19_out_Output" [fillcolor=coral1, label=Output, style=filled];
"SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19" -> "SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19_out_Output"  [minlen=0, style=invis];
}

"FTRawBankDecoder/FTRawBankDecoder_out_OutputLocation" -> "SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19_in_HitsLocation";
subgraph "cluster_FTRawBankDecoder/FTRawBankDecoder" {
bgcolor=aliceblue;
label="";
"FTRawBankDecoder/FTRawBankDecoder" [label=<<B>FTRawBankDecoder/FTRawBankDecoder</B><BR/>defaults-only>, shape=plaintext];
"FTRawBankDecoder/FTRawBankDecoder_in_Odin" [fillcolor=deepskyblue1, label=Odin, style=filled];
"FTRawBankDecoder/FTRawBankDecoder" -> "FTRawBankDecoder/FTRawBankDecoder_in_Odin"  [minlen=0, style=invis];
"FTRawBankDecoder/FTRawBankDecoder_in_RawBanks" [fillcolor=deepskyblue1, label=RawBanks, style=filled];
"FTRawBankDecoder/FTRawBankDecoder" -> "FTRawBankDecoder/FTRawBankDecoder_in_RawBanks"  [minlen=0, style=invis];
"FTRawBankDecoder/FTRawBankDecoder_out_OutputLocation" [fillcolor=coral1, label=OutputLocation, style=filled];
"FTRawBankDecoder/FTRawBankDecoder" -> "FTRawBankDecoder/FTRawBankDecoder_out_OutputLocation"  [minlen=0, style=invis];
}

"createODIN/Decode_ODIN_out_ODIN" -> "FTRawBankDecoder/FTRawBankDecoder_in_Odin";
subgraph "cluster_createODIN/Decode_ODIN" {
bgcolor=aliceblue;
label="";
"createODIN/Decode_ODIN" [label=<<B>createODIN/Decode_ODIN</B><BR/>defaults-only>, shape=plaintext];
"createODIN/Decode_ODIN_in_RawBanks" [fillcolor=deepskyblue1, label=RawBanks, style=filled];
"createODIN/Decode_ODIN" -> "createODIN/Decode_ODIN_in_RawBanks"  [minlen=0, style=invis];
"createODIN/Decode_ODIN_out_ODIN" [fillcolor=coral1, label=ODIN, style=filled];
"createODIN/Decode_ODIN" -> "createODIN/Decode_ODIN_out_ODIN"  [minlen=0, style=invis];
}

"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_out_RawBankLocations" -> "createODIN/Decode_ODIN_in_RawBanks";
subgraph "cluster_LHCb::UnpackRawEvent/UnpackRawEvent_ODIN" {
bgcolor=aliceblue;
label="";
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN" [label=<<B>LHCb::UnpackRawEvent/UnpackRawEvent_ODIN</B><BR/>BankTypes = [&#x27;ODIN&#x27;]<BR/>RawBankLocations = /Event/RawBanks/ODIN>, shape=plaintext];
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_in_RawEventLocation" [fillcolor=deepskyblue1, label=RawEventLocation, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN" -> "LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_in_RawEventLocation"  [minlen=0, style=invis];
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_out_RawBankLocations" [fillcolor=coral1, label=RawBankLocations, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN" -> "LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_out_RawBankLocations"  [minlen=0, style=invis];
}

"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" -> "LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_in_RawEventLocation";
"LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster_out_RawBankLocations" -> "FTRawBankDecoder/FTRawBankDecoder_in_RawBanks";
subgraph "cluster_LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster" {
bgcolor=aliceblue;
label="";
"LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster" [label=<<B>LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster</B><BR/>BankTypes = [&#x27;FTCluster&#x27;]<BR/>RawBankLocations = /Event/RawBanks/FTCluster>, shape=plaintext];
"LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster_in_RawEventLocation" [fillcolor=deepskyblue1, label=RawEventLocation, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster" -> "LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster_in_RawEventLocation"  [minlen=0, style=invis];
"LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster_out_RawBankLocations" [fillcolor=coral1, label=RawBankLocations, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster" -> "LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster_out_RawBankLocations"  [minlen=0, style=invis];
}

"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" -> "LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster_in_RawEventLocation";
"PrVeloUT/PrVeloUT_4eab5c1b_out_OutputTracksName" -> "SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1_in_InputTracks";
subgraph "cluster_PrVeloUT/PrVeloUT_4eab5c1b" {
bgcolor=aliceblue;
label="";
"PrVeloUT/PrVeloUT_4eab5c1b" [label=<<B>PrVeloUT/PrVeloUT_4eab5c1b</B><BR/>defaults-only>, shape=plaintext];
"PrVeloUT/PrVeloUT_4eab5c1b_in_InputTracksName" [fillcolor=deepskyblue1, label=InputTracksName, style=filled];
"PrVeloUT/PrVeloUT_4eab5c1b" -> "PrVeloUT/PrVeloUT_4eab5c1b_in_InputTracksName"  [minlen=0, style=invis];
"PrVeloUT/PrVeloUT_4eab5c1b_in_UTHits" [fillcolor=deepskyblue1, label=UTHits, style=filled];
"PrVeloUT/PrVeloUT_4eab5c1b" -> "PrVeloUT/PrVeloUT_4eab5c1b_in_UTHits"  [minlen=0, style=invis];
"PrVeloUT/PrVeloUT_4eab5c1b_out_OutputTracksName" [fillcolor=coral1, label=OutputTracksName, style=filled];
"PrVeloUT/PrVeloUT_4eab5c1b" -> "PrVeloUT/PrVeloUT_4eab5c1b_out_OutputTracksName"  [minlen=0, style=invis];
}

"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksLocation" -> "PrVeloUT/PrVeloUT_4eab5c1b_in_InputTracksName";
"PrStorePrUTHits/PrStorePrUTHits_df75b912_out_UTHitsLocation" -> "PrVeloUT/PrVeloUT_4eab5c1b_in_UTHits";
subgraph "cluster_PrStorePrUTHits/PrStorePrUTHits_df75b912" {
bgcolor=aliceblue;
label="";
"PrStorePrUTHits/PrStorePrUTHits_df75b912" [label=<<B>PrStorePrUTHits/PrStorePrUTHits_df75b912</B><BR/>isCluster = True<BR/>positionMethod = GeoWeighting>, shape=plaintext];
"PrStorePrUTHits/PrStorePrUTHits_df75b912_in_RawBanks" [fillcolor=deepskyblue1, label=RawBanks, style=filled];
"PrStorePrUTHits/PrStorePrUTHits_df75b912" -> "PrStorePrUTHits/PrStorePrUTHits_df75b912_in_RawBanks"  [minlen=0, style=invis];
"PrStorePrUTHits/PrStorePrUTHits_df75b912_out_UTHitsLocation" [fillcolor=coral1, label=UTHitsLocation, style=filled];
"PrStorePrUTHits/PrStorePrUTHits_df75b912" -> "PrStorePrUTHits/PrStorePrUTHits_df75b912_out_UTHitsLocation"  [minlen=0, style=invis];
}

"LHCb::UnpackRawEvent/UnpackRawEvent_UT_out_RawBankLocations" -> "PrStorePrUTHits/PrStorePrUTHits_df75b912_in_RawBanks";
subgraph "cluster_LHCb::UnpackRawEvent/UnpackRawEvent_UT" {
bgcolor=aliceblue;
label="";
"LHCb::UnpackRawEvent/UnpackRawEvent_UT" [label=<<B>LHCb::UnpackRawEvent/UnpackRawEvent_UT</B><BR/>BankTypes = [&#x27;UT&#x27;]<BR/>RawBankLocations = /Event/RawBanks/UT>, shape=plaintext];
"LHCb::UnpackRawEvent/UnpackRawEvent_UT_in_RawEventLocation" [fillcolor=deepskyblue1, label=RawEventLocation, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_UT" -> "LHCb::UnpackRawEvent/UnpackRawEvent_UT_in_RawEventLocation"  [minlen=0, style=invis];
"LHCb::UnpackRawEvent/UnpackRawEvent_UT_out_RawBankLocations" [fillcolor=coral1, label=RawBankLocations, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_UT" -> "LHCb::UnpackRawEvent/UnpackRawEvent_UT_out_RawBankLocations"  [minlen=0, style=invis];
}

"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" -> "LHCb::UnpackRawEvent/UnpackRawEvent_UT_in_RawEventLocation";
"UniqueIDGeneratorAlg/UniqueIDGeneratorAlg_26e527e9_out_Output" -> "VeloKalman/VeloKalman_bf73c006_in_UniqueIDGenerator";
"MakePVRelations__PrFittedForwardTracks/MakePVRelations__PrFittedForwardTracks_6a2c6809_out_Output" -> "MakeZip__PrFittedForwardTracks__BestVertexRelations/MakeZip__PrFittedForwardTracks__BestVertexRelations_7f27b631_in_Input2";
subgraph "cluster_MakePVRelations__PrFittedForwardTracks/MakePVRelations__PrFittedForwardTracks_6a2c6809" {
bgcolor=aliceblue;
label="";
"MakePVRelations__PrFittedForwardTracks/MakePVRelations__PrFittedForwardTracks_6a2c6809" [label=<<B>MakePVRelations__PrFittedForwardTracks/MakePVRelations__PrFittedForwardTracks_6a2c6809</B><BR/>defaults-only>, shape=plaintext];
"MakePVRelations__PrFittedForwardTracks/MakePVRelations__PrFittedForwardTracks_6a2c6809_in_Input" [fillcolor=deepskyblue1, label=Input, style=filled];
"MakePVRelations__PrFittedForwardTracks/MakePVRelations__PrFittedForwardTracks_6a2c6809" -> "MakePVRelations__PrFittedForwardTracks/MakePVRelations__PrFittedForwardTracks_6a2c6809_in_Input"  [minlen=0, style=invis];
"MakePVRelations__PrFittedForwardTracks/MakePVRelations__PrFittedForwardTracks_6a2c6809_in_InputVertices" [fillcolor=deepskyblue1, label=InputVertices, style=filled];
"MakePVRelations__PrFittedForwardTracks/MakePVRelations__PrFittedForwardTracks_6a2c6809" -> "MakePVRelations__PrFittedForwardTracks/MakePVRelations__PrFittedForwardTracks_6a2c6809_in_InputVertices"  [minlen=0, style=invis];
"MakePVRelations__PrFittedForwardTracks/MakePVRelations__PrFittedForwardTracks_6a2c6809_out_Output" [fillcolor=coral1, label=Output, style=filled];
"MakePVRelations__PrFittedForwardTracks/MakePVRelations__PrFittedForwardTracks_6a2c6809" -> "MakePVRelations__PrFittedForwardTracks/MakePVRelations__PrFittedForwardTracks_6a2c6809_out_Output"  [minlen=0, style=invis];
}

"VeloKalman/VeloKalman_bf73c006_out_OutputTracksLocation" -> "MakePVRelations__PrFittedForwardTracks/MakePVRelations__PrFittedForwardTracks_6a2c6809_in_Input";
"TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_out_OutputVertices" -> "MakePVRelations__PrFittedForwardTracks/MakePVRelations__PrFittedForwardTracks_6a2c6809_in_InputVertices";
subgraph "cluster_TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c" {
bgcolor=aliceblue;
label="";
"TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c" [label=<<B>TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c</B><BR/>MinZ = -600.0>, shape=plaintext];
"TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_in_TracksLocation" [fillcolor=deepskyblue1, label=TracksLocation, style=filled];
"TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c" -> "TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_in_TracksLocation"  [minlen=0, style=invis];
"TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_in_TracksBackwardLocation" [fillcolor=deepskyblue1, label=TracksBackwardLocation, style=filled];
"TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c" -> "TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_in_TracksBackwardLocation"  [minlen=0, style=invis];
"TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_out_OutputVertices" [fillcolor=coral1, label=OutputVertices, style=filled];
"TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c" -> "TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_out_OutputVertices"  [minlen=0, style=invis];
}

"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksLocation" -> "TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_in_TracksLocation";
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksBackwardLocation" -> "TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_in_TracksBackwardLocation";
"TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_out_OutputVertices" -> "PrFilter__PrFittedForwardTracksWithPVs/PrFilter__PrFittedForwardTracksWithPVs_a3edb65e_in_Cut_PyConfDataDependencies";
"TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_out_OutputVertices" -> "CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs/CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs_12f1c1a9_in_VertexCut_PyConfDataDependencies";
"PrFilter__PrFittedForwardTracksWithPVs/PrFilter__PrFittedForwardTracksWithPVs_a3edb65e_out_Output" -> "CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs/CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs_12f1c1a9_in_VertexCut_PyConfDataDependencies";
subgraph "cluster_LHCb__Converters__Composites__TracksWithPVsToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithPVsToVectorOfRecVertex_b247fde1" {
bgcolor=aliceblue;
label="";
"LHCb__Converters__Composites__TracksWithPVsToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithPVsToVectorOfRecVertex_b247fde1" [label=<<B>LHCb__Converters__Composites__TracksWithPVsToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithPVsToVectorOfRecVertex_b247fde1</B><BR/>defaults-only>, shape=plaintext];
"LHCb__Converters__Composites__TracksWithPVsToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithPVsToVectorOfRecVertex_b247fde1_in_TracksInVertices" [fillcolor=deepskyblue1, label=TracksInVertices, style=filled];
"LHCb__Converters__Composites__TracksWithPVsToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithPVsToVectorOfRecVertex_b247fde1" -> "LHCb__Converters__Composites__TracksWithPVsToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithPVsToVectorOfRecVertex_b247fde1_in_TracksInVertices"  [minlen=0, style=invis];
"LHCb__Converters__Composites__TracksWithPVsToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithPVsToVectorOfRecVertex_b247fde1_in_ConvertedTracks" [fillcolor=deepskyblue1, label=ConvertedTracks, style=filled];
"LHCb__Converters__Composites__TracksWithPVsToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithPVsToVectorOfRecVertex_b247fde1" -> "LHCb__Converters__Composites__TracksWithPVsToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithPVsToVectorOfRecVertex_b247fde1_in_ConvertedTracks"  [minlen=0, style=invis];
"LHCb__Converters__Composites__TracksWithPVsToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithPVsToVectorOfRecVertex_b247fde1_in_InputComposites" [fillcolor=deepskyblue1, label=InputComposites, style=filled];
"LHCb__Converters__Composites__TracksWithPVsToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithPVsToVectorOfRecVertex_b247fde1" -> "LHCb__Converters__Composites__TracksWithPVsToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithPVsToVectorOfRecVertex_b247fde1_in_InputComposites"  [minlen=0, style=invis];
"LHCb__Converters__Composites__TracksWithPVsToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithPVsToVectorOfRecVertex_b247fde1_out_OutputVertices" [fillcolor=coral1, label=OutputVertices, style=filled];
"LHCb__Converters__Composites__TracksWithPVsToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithPVsToVectorOfRecVertex_b247fde1" -> "LHCb__Converters__Composites__TracksWithPVsToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithPVsToVectorOfRecVertex_b247fde1_out_OutputVertices"  [minlen=0, style=invis];
}

"PrFilter__PrFittedForwardTracksWithPVs/PrFilter__PrFittedForwardTracksWithPVs_a3edb65e_out_Output" -> "LHCb__Converters__Composites__TracksWithPVsToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithPVsToVectorOfRecVertex_b247fde1_in_TracksInVertices";
subgraph "cluster_PrFilter__PrFittedForwardTracksWithPVs/PrFilter__PrFittedForwardTracksWithPVs_a3edb65e" {
bgcolor=aliceblue;
label="";
"PrFilter__PrFittedForwardTracksWithPVs/PrFilter__PrFittedForwardTracksWithPVs_a3edb65e" [label=<<B>PrFilter__PrFittedForwardTracksWithPVs/PrFilter__PrFittedForwardTracksWithPVs_a3edb65e</B><BR/>Cut = FILTER(Functor=( ( ( RHO_COORDINATE @ THREEMOMENTU[...]&#x27;]), _FORWARDARGS() ), _FORWARDARGS() ) &gt; 4.0 ) ))>, shape=plaintext];
"PrFilter__PrFittedForwardTracksWithPVs/PrFilter__PrFittedForwardTracksWithPVs_a3edb65e_in_Input" [fillcolor=deepskyblue1, label=Input, style=filled];
"PrFilter__PrFittedForwardTracksWithPVs/PrFilter__PrFittedForwardTracksWithPVs_a3edb65e" -> "PrFilter__PrFittedForwardTracksWithPVs/PrFilter__PrFittedForwardTracksWithPVs_a3edb65e_in_Input"  [minlen=0, style=invis];
"PrFilter__PrFittedForwardTracksWithPVs/PrFilter__PrFittedForwardTracksWithPVs_a3edb65e_in_Cut_PyConfDataDependencies" [fillcolor=deepskyblue1, label=Cut_PyConfDataDependencies, style=filled];
"PrFilter__PrFittedForwardTracksWithPVs/PrFilter__PrFittedForwardTracksWithPVs_a3edb65e" -> "PrFilter__PrFittedForwardTracksWithPVs/PrFilter__PrFittedForwardTracksWithPVs_a3edb65e_in_Cut_PyConfDataDependencies"  [minlen=0, style=invis];
"PrFilter__PrFittedForwardTracksWithPVs/PrFilter__PrFittedForwardTracksWithPVs_a3edb65e_out_OutputStorage" [fillcolor=coral1, label=OutputStorage, style=filled];
"PrFilter__PrFittedForwardTracksWithPVs/PrFilter__PrFittedForwardTracksWithPVs_a3edb65e" -> "PrFilter__PrFittedForwardTracksWithPVs/PrFilter__PrFittedForwardTracksWithPVs_a3edb65e_out_OutputStorage"  [minlen=0, style=invis];
"PrFilter__PrFittedForwardTracksWithPVs/PrFilter__PrFittedForwardTracksWithPVs_a3edb65e_out_Output" [fillcolor=coral1, label=Output, style=filled];
"PrFilter__PrFittedForwardTracksWithPVs/PrFilter__PrFittedForwardTracksWithPVs_a3edb65e" -> "PrFilter__PrFittedForwardTracksWithPVs/PrFilter__PrFittedForwardTracksWithPVs_a3edb65e_out_Output"  [minlen=0, style=invis];
}

"MakeZip__PrFittedForwardTracks__BestVertexRelations/MakeZip__PrFittedForwardTracks__BestVertexRelations_7f27b631_out_Output" -> "PrFilter__PrFittedForwardTracksWithPVs/PrFilter__PrFittedForwardTracksWithPVs_a3edb65e_in_Input";
subgraph "cluster_MakeZip__PrFittedForwardTracks__BestVertexRelations/MakeZip__PrFittedForwardTracks__BestVertexRelations_7f27b631" {
bgcolor=aliceblue;
label="";
"MakeZip__PrFittedForwardTracks__BestVertexRelations/MakeZip__PrFittedForwardTracks__BestVertexRelations_7f27b631" [label=<<B>MakeZip__PrFittedForwardTracks__BestVertexRelations/MakeZip__PrFittedForwardTracks__BestVertexRelations_7f27b631</B><BR/>defaults-only>, shape=plaintext];
"MakeZip__PrFittedForwardTracks__BestVertexRelations/MakeZip__PrFittedForwardTracks__BestVertexRelations_7f27b631_in_Input1" [fillcolor=deepskyblue1, label=Input1, style=filled];
"MakeZip__PrFittedForwardTracks__BestVertexRelations/MakeZip__PrFittedForwardTracks__BestVertexRelations_7f27b631" -> "MakeZip__PrFittedForwardTracks__BestVertexRelations/MakeZip__PrFittedForwardTracks__BestVertexRelations_7f27b631_in_Input1"  [minlen=0, style=invis];
"MakeZip__PrFittedForwardTracks__BestVertexRelations/MakeZip__PrFittedForwardTracks__BestVertexRelations_7f27b631_in_Input2" [fillcolor=deepskyblue1, label=Input2, style=filled];
"MakeZip__PrFittedForwardTracks__BestVertexRelations/MakeZip__PrFittedForwardTracks__BestVertexRelations_7f27b631" -> "MakeZip__PrFittedForwardTracks__BestVertexRelations/MakeZip__PrFittedForwardTracks__BestVertexRelations_7f27b631_in_Input2"  [minlen=0, style=invis];
"MakeZip__PrFittedForwardTracks__BestVertexRelations/MakeZip__PrFittedForwardTracks__BestVertexRelations_7f27b631_out_Output" [fillcolor=coral1, label=Output, style=filled];
"MakeZip__PrFittedForwardTracks__BestVertexRelations/MakeZip__PrFittedForwardTracks__BestVertexRelations_7f27b631" -> "MakeZip__PrFittedForwardTracks__BestVertexRelations/MakeZip__PrFittedForwardTracks__BestVertexRelations_7f27b631_out_Output"  [minlen=0, style=invis];
}

"VeloKalman/VeloKalman_bf73c006_out_OutputTracksLocation" -> "MakeZip__PrFittedForwardTracks__BestVertexRelations/MakeZip__PrFittedForwardTracks__BestVertexRelations_7f27b631_in_Input1";
subgraph "cluster_VeloKalman/VeloKalman_bf73c006" {
bgcolor=aliceblue;
label="";
"VeloKalman/VeloKalman_bf73c006" [label=<<B>VeloKalman/VeloKalman_bf73c006</B><BR/>defaults-only>, shape=plaintext];
"VeloKalman/VeloKalman_bf73c006_in_HitsLocation" [fillcolor=deepskyblue1, label=HitsLocation, style=filled];
"VeloKalman/VeloKalman_bf73c006" -> "VeloKalman/VeloKalman_bf73c006_in_HitsLocation"  [minlen=0, style=invis];
"VeloKalman/VeloKalman_bf73c006_in_TracksVPLocation" [fillcolor=deepskyblue1, label=TracksVPLocation, style=filled];
"VeloKalman/VeloKalman_bf73c006" -> "VeloKalman/VeloKalman_bf73c006_in_TracksVPLocation"  [minlen=0, style=invis];
"VeloKalman/VeloKalman_bf73c006_in_TracksFTLocation" [fillcolor=deepskyblue1, label=TracksFTLocation, style=filled];
"VeloKalman/VeloKalman_bf73c006" -> "VeloKalman/VeloKalman_bf73c006_in_TracksFTLocation"  [minlen=0, style=invis];
"VeloKalman/VeloKalman_bf73c006_in_UniqueIDGenerator" [fillcolor=deepskyblue1, label=UniqueIDGenerator, style=filled];
"VeloKalman/VeloKalman_bf73c006" -> "VeloKalman/VeloKalman_bf73c006_in_UniqueIDGenerator"  [minlen=0, style=invis];
"VeloKalman/VeloKalman_bf73c006_out_OutputTracksLocation" [fillcolor=coral1, label=OutputTracksLocation, style=filled];
"VeloKalman/VeloKalman_bf73c006" -> "VeloKalman/VeloKalman_bf73c006_out_OutputTracksLocation"  [minlen=0, style=invis];
}

"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_HitsLocation" -> "VeloKalman/VeloKalman_bf73c006_in_HitsLocation";
subgraph "cluster_VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651" {
bgcolor=aliceblue;
label="";
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651" [label=<<B>VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651</B><BR/>SensorMasks = (False, False, False, False, False, False, False, [...], False, False, False, False, False, False, False)<BR/>MaxScatterSeeding = 0.1<BR/>MaxScatterForwarding = 0.1<BR/>MaxScatter3hits = 0.02<BR/>SkipForward = 1>, shape=plaintext];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_in_RawBanks" [fillcolor=deepskyblue1, label=RawBanks, style=filled];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651" -> "VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_in_RawBanks"  [minlen=0, style=invis];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksLocation" [fillcolor=coral1, label=TracksLocation, style=filled];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651" -> "VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksLocation"  [minlen=0, style=invis];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksBackwardLocation" [fillcolor=coral1, label=TracksBackwardLocation, style=filled];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651" -> "VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksBackwardLocation"  [minlen=0, style=invis];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_HitsLocation" [fillcolor=coral1, label=HitsLocation, style=filled];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651" -> "VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_HitsLocation"  [minlen=0, style=invis];
}

"LHCb::UnpackRawEvent/UnpackRawEvent_VP_out_RawBankLocations" -> "VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_in_RawBanks";
subgraph "cluster_LHCb::UnpackRawEvent/UnpackRawEvent_VP" {
bgcolor=aliceblue;
label="";
"LHCb::UnpackRawEvent/UnpackRawEvent_VP" [label=<<B>LHCb::UnpackRawEvent/UnpackRawEvent_VP</B><BR/>BankTypes = [&#x27;VP&#x27;]<BR/>RawBankLocations = /Event/RawBanks/VP>, shape=plaintext];
"LHCb::UnpackRawEvent/UnpackRawEvent_VP_in_RawEventLocation" [fillcolor=deepskyblue1, label=RawEventLocation, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_VP" -> "LHCb::UnpackRawEvent/UnpackRawEvent_VP_in_RawEventLocation"  [minlen=0, style=invis];
"LHCb::UnpackRawEvent/UnpackRawEvent_VP_out_RawBankLocations" [fillcolor=coral1, label=RawBankLocations, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_VP" -> "LHCb::UnpackRawEvent/UnpackRawEvent_VP_out_RawBankLocations"  [minlen=0, style=invis];
}

"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" -> "LHCb::UnpackRawEvent/UnpackRawEvent_VP_in_RawEventLocation";
subgraph "cluster_Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent" {
bgcolor=aliceblue;
label="";
"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent" [label=<<B>Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent</B><BR/>Output = /Event/DAQ/RawEvent>, shape=plaintext];
"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" [fillcolor=coral1, label=Output, style=filled];
"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent" -> "Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output"  [minlen=0, style=invis];
}

"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksLocation" -> "VeloKalman/VeloKalman_bf73c006_in_TracksVPLocation";
"SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1_out_Output" -> "VeloKalman/VeloKalman_bf73c006_in_TracksFTLocation";
subgraph "cluster_SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1" {
bgcolor=aliceblue;
label="";
"SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1" [label=<<B>SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1</B><BR/>defaults-only>, shape=plaintext];
"SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1_in_HitsLocation" [fillcolor=deepskyblue1, label=HitsLocation, style=filled];
"SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1" -> "SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1_in_HitsLocation"  [minlen=0, style=invis];
"SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1_in_InputTracks" [fillcolor=deepskyblue1, label=InputTracks, style=filled];
"SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1" -> "SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1_in_InputTracks"  [minlen=0, style=invis];
"SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1_out_Output" [fillcolor=coral1, label=Output, style=filled];
"SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1" -> "SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1_out_Output"  [minlen=0, style=invis];
}

"SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19_out_Output" -> "SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1_in_HitsLocation";
subgraph "cluster_SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19" {
bgcolor=aliceblue;
label="";
"SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19" [label=<<B>SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19</B><BR/>defaults-only>, shape=plaintext];
"SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19_in_HitsLocation" [fillcolor=deepskyblue1, label=HitsLocation, style=filled];
"SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19" -> "SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19_in_HitsLocation"  [minlen=0, style=invis];
"SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19_out_Output" [fillcolor=coral1, label=Output, style=filled];
"SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19" -> "SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19_out_Output"  [minlen=0, style=invis];
}

"FTRawBankDecoder/FTRawBankDecoder_out_OutputLocation" -> "SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19_in_HitsLocation";
subgraph "cluster_FTRawBankDecoder/FTRawBankDecoder" {
bgcolor=aliceblue;
label="";
"FTRawBankDecoder/FTRawBankDecoder" [label=<<B>FTRawBankDecoder/FTRawBankDecoder</B><BR/>defaults-only>, shape=plaintext];
"FTRawBankDecoder/FTRawBankDecoder_in_Odin" [fillcolor=deepskyblue1, label=Odin, style=filled];
"FTRawBankDecoder/FTRawBankDecoder" -> "FTRawBankDecoder/FTRawBankDecoder_in_Odin"  [minlen=0, style=invis];
"FTRawBankDecoder/FTRawBankDecoder_in_RawBanks" [fillcolor=deepskyblue1, label=RawBanks, style=filled];
"FTRawBankDecoder/FTRawBankDecoder" -> "FTRawBankDecoder/FTRawBankDecoder_in_RawBanks"  [minlen=0, style=invis];
"FTRawBankDecoder/FTRawBankDecoder_out_OutputLocation" [fillcolor=coral1, label=OutputLocation, style=filled];
"FTRawBankDecoder/FTRawBankDecoder" -> "FTRawBankDecoder/FTRawBankDecoder_out_OutputLocation"  [minlen=0, style=invis];
}

"createODIN/Decode_ODIN_out_ODIN" -> "FTRawBankDecoder/FTRawBankDecoder_in_Odin";
subgraph "cluster_createODIN/Decode_ODIN" {
bgcolor=aliceblue;
label="";
"createODIN/Decode_ODIN" [label=<<B>createODIN/Decode_ODIN</B><BR/>defaults-only>, shape=plaintext];
"createODIN/Decode_ODIN_in_RawBanks" [fillcolor=deepskyblue1, label=RawBanks, style=filled];
"createODIN/Decode_ODIN" -> "createODIN/Decode_ODIN_in_RawBanks"  [minlen=0, style=invis];
"createODIN/Decode_ODIN_out_ODIN" [fillcolor=coral1, label=ODIN, style=filled];
"createODIN/Decode_ODIN" -> "createODIN/Decode_ODIN_out_ODIN"  [minlen=0, style=invis];
}

"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_out_RawBankLocations" -> "createODIN/Decode_ODIN_in_RawBanks";
subgraph "cluster_LHCb::UnpackRawEvent/UnpackRawEvent_ODIN" {
bgcolor=aliceblue;
label="";
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN" [label=<<B>LHCb::UnpackRawEvent/UnpackRawEvent_ODIN</B><BR/>BankTypes = [&#x27;ODIN&#x27;]<BR/>RawBankLocations = /Event/RawBanks/ODIN>, shape=plaintext];
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_in_RawEventLocation" [fillcolor=deepskyblue1, label=RawEventLocation, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN" -> "LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_in_RawEventLocation"  [minlen=0, style=invis];
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_out_RawBankLocations" [fillcolor=coral1, label=RawBankLocations, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN" -> "LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_out_RawBankLocations"  [minlen=0, style=invis];
}

"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" -> "LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_in_RawEventLocation";
"LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster_out_RawBankLocations" -> "FTRawBankDecoder/FTRawBankDecoder_in_RawBanks";
subgraph "cluster_LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster" {
bgcolor=aliceblue;
label="";
"LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster" [label=<<B>LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster</B><BR/>BankTypes = [&#x27;FTCluster&#x27;]<BR/>RawBankLocations = /Event/RawBanks/FTCluster>, shape=plaintext];
"LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster_in_RawEventLocation" [fillcolor=deepskyblue1, label=RawEventLocation, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster" -> "LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster_in_RawEventLocation"  [minlen=0, style=invis];
"LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster_out_RawBankLocations" [fillcolor=coral1, label=RawBankLocations, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster" -> "LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster_out_RawBankLocations"  [minlen=0, style=invis];
}

"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" -> "LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster_in_RawEventLocation";
"PrVeloUT/PrVeloUT_4eab5c1b_out_OutputTracksName" -> "SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1_in_InputTracks";
subgraph "cluster_PrVeloUT/PrVeloUT_4eab5c1b" {
bgcolor=aliceblue;
label="";
"PrVeloUT/PrVeloUT_4eab5c1b" [label=<<B>PrVeloUT/PrVeloUT_4eab5c1b</B><BR/>defaults-only>, shape=plaintext];
"PrVeloUT/PrVeloUT_4eab5c1b_in_InputTracksName" [fillcolor=deepskyblue1, label=InputTracksName, style=filled];
"PrVeloUT/PrVeloUT_4eab5c1b" -> "PrVeloUT/PrVeloUT_4eab5c1b_in_InputTracksName"  [minlen=0, style=invis];
"PrVeloUT/PrVeloUT_4eab5c1b_in_UTHits" [fillcolor=deepskyblue1, label=UTHits, style=filled];
"PrVeloUT/PrVeloUT_4eab5c1b" -> "PrVeloUT/PrVeloUT_4eab5c1b_in_UTHits"  [minlen=0, style=invis];
"PrVeloUT/PrVeloUT_4eab5c1b_out_OutputTracksName" [fillcolor=coral1, label=OutputTracksName, style=filled];
"PrVeloUT/PrVeloUT_4eab5c1b" -> "PrVeloUT/PrVeloUT_4eab5c1b_out_OutputTracksName"  [minlen=0, style=invis];
}

"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksLocation" -> "PrVeloUT/PrVeloUT_4eab5c1b_in_InputTracksName";
"PrStorePrUTHits/PrStorePrUTHits_df75b912_out_UTHitsLocation" -> "PrVeloUT/PrVeloUT_4eab5c1b_in_UTHits";
subgraph "cluster_PrStorePrUTHits/PrStorePrUTHits_df75b912" {
bgcolor=aliceblue;
label="";
"PrStorePrUTHits/PrStorePrUTHits_df75b912" [label=<<B>PrStorePrUTHits/PrStorePrUTHits_df75b912</B><BR/>isCluster = True<BR/>positionMethod = GeoWeighting>, shape=plaintext];
"PrStorePrUTHits/PrStorePrUTHits_df75b912_in_RawBanks" [fillcolor=deepskyblue1, label=RawBanks, style=filled];
"PrStorePrUTHits/PrStorePrUTHits_df75b912" -> "PrStorePrUTHits/PrStorePrUTHits_df75b912_in_RawBanks"  [minlen=0, style=invis];
"PrStorePrUTHits/PrStorePrUTHits_df75b912_out_UTHitsLocation" [fillcolor=coral1, label=UTHitsLocation, style=filled];
"PrStorePrUTHits/PrStorePrUTHits_df75b912" -> "PrStorePrUTHits/PrStorePrUTHits_df75b912_out_UTHitsLocation"  [minlen=0, style=invis];
}

"LHCb::UnpackRawEvent/UnpackRawEvent_UT_out_RawBankLocations" -> "PrStorePrUTHits/PrStorePrUTHits_df75b912_in_RawBanks";
subgraph "cluster_LHCb::UnpackRawEvent/UnpackRawEvent_UT" {
bgcolor=aliceblue;
label="";
"LHCb::UnpackRawEvent/UnpackRawEvent_UT" [label=<<B>LHCb::UnpackRawEvent/UnpackRawEvent_UT</B><BR/>BankTypes = [&#x27;UT&#x27;]<BR/>RawBankLocations = /Event/RawBanks/UT>, shape=plaintext];
"LHCb::UnpackRawEvent/UnpackRawEvent_UT_in_RawEventLocation" [fillcolor=deepskyblue1, label=RawEventLocation, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_UT" -> "LHCb::UnpackRawEvent/UnpackRawEvent_UT_in_RawEventLocation"  [minlen=0, style=invis];
"LHCb::UnpackRawEvent/UnpackRawEvent_UT_out_RawBankLocations" [fillcolor=coral1, label=RawBankLocations, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_UT" -> "LHCb::UnpackRawEvent/UnpackRawEvent_UT_out_RawBankLocations"  [minlen=0, style=invis];
}

"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" -> "LHCb::UnpackRawEvent/UnpackRawEvent_UT_in_RawEventLocation";
"UniqueIDGeneratorAlg/UniqueIDGeneratorAlg_26e527e9_out_Output" -> "VeloKalman/VeloKalman_bf73c006_in_UniqueIDGenerator";
subgraph "cluster_UniqueIDGeneratorAlg/UniqueIDGeneratorAlg_26e527e9" {
bgcolor=aliceblue;
label="";
"UniqueIDGeneratorAlg/UniqueIDGeneratorAlg_26e527e9" [label=<<B>UniqueIDGeneratorAlg/UniqueIDGeneratorAlg_26e527e9</B><BR/>defaults-only>, shape=plaintext];
"UniqueIDGeneratorAlg/UniqueIDGeneratorAlg_26e527e9_out_Output" [fillcolor=coral1, label=Output, style=filled];
"UniqueIDGeneratorAlg/UniqueIDGeneratorAlg_26e527e9" -> "UniqueIDGeneratorAlg/UniqueIDGeneratorAlg_26e527e9_out_Output"  [minlen=0, style=invis];
}

"MakePVRelations__PrFittedForwardTracks/MakePVRelations__PrFittedForwardTracks_6a2c6809_out_Output" -> "MakeZip__PrFittedForwardTracks__BestVertexRelations/MakeZip__PrFittedForwardTracks__BestVertexRelations_7f27b631_in_Input2";
subgraph "cluster_MakePVRelations__PrFittedForwardTracks/MakePVRelations__PrFittedForwardTracks_6a2c6809" {
bgcolor=aliceblue;
label="";
"MakePVRelations__PrFittedForwardTracks/MakePVRelations__PrFittedForwardTracks_6a2c6809" [label=<<B>MakePVRelations__PrFittedForwardTracks/MakePVRelations__PrFittedForwardTracks_6a2c6809</B><BR/>defaults-only>, shape=plaintext];
"MakePVRelations__PrFittedForwardTracks/MakePVRelations__PrFittedForwardTracks_6a2c6809_in_Input" [fillcolor=deepskyblue1, label=Input, style=filled];
"MakePVRelations__PrFittedForwardTracks/MakePVRelations__PrFittedForwardTracks_6a2c6809" -> "MakePVRelations__PrFittedForwardTracks/MakePVRelations__PrFittedForwardTracks_6a2c6809_in_Input"  [minlen=0, style=invis];
"MakePVRelations__PrFittedForwardTracks/MakePVRelations__PrFittedForwardTracks_6a2c6809_in_InputVertices" [fillcolor=deepskyblue1, label=InputVertices, style=filled];
"MakePVRelations__PrFittedForwardTracks/MakePVRelations__PrFittedForwardTracks_6a2c6809" -> "MakePVRelations__PrFittedForwardTracks/MakePVRelations__PrFittedForwardTracks_6a2c6809_in_InputVertices"  [minlen=0, style=invis];
"MakePVRelations__PrFittedForwardTracks/MakePVRelations__PrFittedForwardTracks_6a2c6809_out_Output" [fillcolor=coral1, label=Output, style=filled];
"MakePVRelations__PrFittedForwardTracks/MakePVRelations__PrFittedForwardTracks_6a2c6809" -> "MakePVRelations__PrFittedForwardTracks/MakePVRelations__PrFittedForwardTracks_6a2c6809_out_Output"  [minlen=0, style=invis];
}

"VeloKalman/VeloKalman_bf73c006_out_OutputTracksLocation" -> "MakePVRelations__PrFittedForwardTracks/MakePVRelations__PrFittedForwardTracks_6a2c6809_in_Input";
"TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_out_OutputVertices" -> "MakePVRelations__PrFittedForwardTracks/MakePVRelations__PrFittedForwardTracks_6a2c6809_in_InputVertices";
subgraph "cluster_TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c" {
bgcolor=aliceblue;
label="";
"TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c" [label=<<B>TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c</B><BR/>MinZ = -600.0>, shape=plaintext];
"TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_in_TracksLocation" [fillcolor=deepskyblue1, label=TracksLocation, style=filled];
"TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c" -> "TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_in_TracksLocation"  [minlen=0, style=invis];
"TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_in_TracksBackwardLocation" [fillcolor=deepskyblue1, label=TracksBackwardLocation, style=filled];
"TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c" -> "TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_in_TracksBackwardLocation"  [minlen=0, style=invis];
"TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_out_OutputVertices" [fillcolor=coral1, label=OutputVertices, style=filled];
"TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c" -> "TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_out_OutputVertices"  [minlen=0, style=invis];
}

"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksLocation" -> "TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_in_TracksLocation";
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksBackwardLocation" -> "TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_in_TracksBackwardLocation";
"TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_out_OutputVertices" -> "PrFilter__PrFittedForwardTracksWithPVs/PrFilter__PrFittedForwardTracksWithPVs_a3edb65e_in_Cut_PyConfDataDependencies";
"fromV3TrackWithPVsV1TrackVector/fromV3TrackWithPVsV1TrackVector_86f8d305_out_OutputTracks" -> "LHCb__Converters__Composites__TracksWithPVsToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithPVsToVectorOfRecVertex_b247fde1_in_ConvertedTracks";
subgraph "cluster_fromV3TrackWithPVsV1TrackVector/fromV3TrackWithPVsV1TrackVector_86f8d305" {
bgcolor=aliceblue;
label="";
"fromV3TrackWithPVsV1TrackVector/fromV3TrackWithPVsV1TrackVector_86f8d305" [label=<<B>fromV3TrackWithPVsV1TrackVector/fromV3TrackWithPVsV1TrackVector_86f8d305</B><BR/>defaults-only>, shape=plaintext];
"fromV3TrackWithPVsV1TrackVector/fromV3TrackWithPVsV1TrackVector_86f8d305_in_InputTracks" [fillcolor=deepskyblue1, label=InputTracks, style=filled];
"fromV3TrackWithPVsV1TrackVector/fromV3TrackWithPVsV1TrackVector_86f8d305" -> "fromV3TrackWithPVsV1TrackVector/fromV3TrackWithPVsV1TrackVector_86f8d305_in_InputTracks"  [minlen=0, style=invis];
"fromV3TrackWithPVsV1TrackVector/fromV3TrackWithPVsV1TrackVector_86f8d305_out_OutputTracks" [fillcolor=coral1, label=OutputTracks, style=filled];
"fromV3TrackWithPVsV1TrackVector/fromV3TrackWithPVsV1TrackVector_86f8d305" -> "fromV3TrackWithPVsV1TrackVector/fromV3TrackWithPVsV1TrackVector_86f8d305_out_OutputTracks"  [minlen=0, style=invis];
}

"PrFilter__PrFittedForwardTracksWithPVs/PrFilter__PrFittedForwardTracksWithPVs_a3edb65e_out_Output" -> "fromV3TrackWithPVsV1TrackVector/fromV3TrackWithPVsV1TrackVector_86f8d305_in_InputTracks";
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs/CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs_12f1c1a9_out_Output" -> "LHCb__Converters__Composites__TracksWithPVsToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithPVsToVectorOfRecVertex_b247fde1_in_InputComposites";
subgraph "cluster_CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs/CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs_12f1c1a9" {
bgcolor=aliceblue;
label="";
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs/CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs_12f1c1a9" [label=<<B>CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs/CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs_12f1c1a9</B><BR/>AssumedMass = pi+<BR/>CombinationCut = ( ( ( RHO_COORDINATE @ THREEMOMENTUM ) &gt; 2000.0 ) &amp; ( MAXSDOCACHI2 &lt; 10.0 ) )<BR/>VertexCut = ( ( ( VALUE_OR(Value=nan) @ _CHI2DOF ) &lt; 10.0 ) &amp; [...]acks const&gt;&#x27;]) )&quot;)}, MVAType=MatrixNet) &gt; 0.96 ) )>, shape=plaintext];
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs/CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs_12f1c1a9_in_InputUniqueIDGenerator" [fillcolor=deepskyblue1, label=InputUniqueIDGenerator, style=filled];
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs/CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs_12f1c1a9" -> "CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs/CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs_12f1c1a9_in_InputUniqueIDGenerator"  [minlen=0, style=invis];
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs/CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs_12f1c1a9_in_InputTracks" [fillcolor=deepskyblue1, label=InputTracks, style=filled];
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs/CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs_12f1c1a9" -> "CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs/CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs_12f1c1a9_in_InputTracks"  [minlen=0, style=invis];
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs/CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs_12f1c1a9_in_CombinationCut_PyConfDataDependencies" [fillcolor=deepskyblue1, label=CombinationCut_PyConfDataDependencies, style=filled];
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs/CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs_12f1c1a9" -> "CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs/CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs_12f1c1a9_in_CombinationCut_PyConfDataDependencies"  [minlen=0, style=invis];
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs/CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs_12f1c1a9_in_VertexCut_PyConfDataDependencies" [fillcolor=deepskyblue1, label=VertexCut_PyConfDataDependencies, style=filled];
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs/CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs_12f1c1a9" -> "CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs/CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs_12f1c1a9_in_VertexCut_PyConfDataDependencies"  [minlen=0, style=invis];
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs/CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs_12f1c1a9_out_Output" [fillcolor=coral1, label=Output, style=filled];
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs/CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs_12f1c1a9" -> "CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs/CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs_12f1c1a9_out_Output"  [minlen=0, style=invis];
}

"UniqueIDGeneratorAlg/UniqueIDGeneratorAlg_26e527e9_out_Output" -> "CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs/CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs_12f1c1a9_in_InputUniqueIDGenerator";
"PrFilter__PrFittedForwardTracksWithPVs/PrFilter__PrFittedForwardTracksWithPVs_a3edb65e_out_Output" -> "CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs/CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs_12f1c1a9_in_InputTracks";
"TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_out_OutputVertices" -> "CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs/CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs_12f1c1a9_in_VertexCut_PyConfDataDependencies";
"PrFilter__PrFittedForwardTracksWithPVs/PrFilter__PrFittedForwardTracksWithPVs_a3edb65e_out_Output" -> "CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs/CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs_12f1c1a9_in_VertexCut_PyConfDataDependencies";
subgraph "cluster_DeterministicPrescaler/HLT1PrescaleDecReportsMonitor" {
bgcolor=aliceblue;
label="";
"DeterministicPrescaler/HLT1PrescaleDecReportsMonitor" [label=<<B>DeterministicPrescaler/HLT1PrescaleDecReportsMonitor</B><BR/>AcceptFraction = 0.1<BR/>SeedName = HLT1PrescaleDecReportsMonitor>, shape=plaintext];
"DeterministicPrescaler/HLT1PrescaleDecReportsMonitor_in_ODINLocation" [fillcolor=deepskyblue1, label=ODINLocation, style=filled];
"DeterministicPrescaler/HLT1PrescaleDecReportsMonitor" -> "DeterministicPrescaler/HLT1PrescaleDecReportsMonitor_in_ODINLocation"  [minlen=0, style=invis];
}

"createODIN/Decode_ODIN_out_ODIN" -> "DeterministicPrescaler/HLT1PrescaleDecReportsMonitor_in_ODINLocation";
subgraph "cluster_createODIN/Decode_ODIN" {
bgcolor=aliceblue;
label="";
"createODIN/Decode_ODIN" [label=<<B>createODIN/Decode_ODIN</B><BR/>defaults-only>, shape=plaintext];
"createODIN/Decode_ODIN_in_RawBanks" [fillcolor=deepskyblue1, label=RawBanks, style=filled];
"createODIN/Decode_ODIN" -> "createODIN/Decode_ODIN_in_RawBanks"  [minlen=0, style=invis];
"createODIN/Decode_ODIN_out_ODIN" [fillcolor=coral1, label=ODIN, style=filled];
"createODIN/Decode_ODIN" -> "createODIN/Decode_ODIN_out_ODIN"  [minlen=0, style=invis];
}

"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_out_RawBankLocations" -> "createODIN/Decode_ODIN_in_RawBanks";
subgraph "cluster_LHCb::UnpackRawEvent/UnpackRawEvent_ODIN" {
bgcolor=aliceblue;
label="";
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN" [label=<<B>LHCb::UnpackRawEvent/UnpackRawEvent_ODIN</B><BR/>BankTypes = [&#x27;ODIN&#x27;]<BR/>RawBankLocations = /Event/RawBanks/ODIN>, shape=plaintext];
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_in_RawEventLocation" [fillcolor=deepskyblue1, label=RawEventLocation, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN" -> "LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_in_RawEventLocation"  [minlen=0, style=invis];
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_out_RawBankLocations" [fillcolor=coral1, label=RawBankLocations, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN" -> "LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_out_RawBankLocations"  [minlen=0, style=invis];
}

"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" -> "LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_in_RawEventLocation";
subgraph "cluster_Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent" {
bgcolor=aliceblue;
label="";
"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent" [label=<<B>Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent</B><BR/>Output = /Event/DAQ/RawEvent>, shape=plaintext];
"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" [fillcolor=coral1, label=Output, style=filled];
"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent" -> "Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output"  [minlen=0, style=invis];
}

subgraph "cluster_HltDecReportsMonitor/HLT1DecReportsMonitor" {
bgcolor=aliceblue;
label="";
"HltDecReportsMonitor/HLT1DecReportsMonitor" [label=<<B>HltDecReportsMonitor/HLT1DecReportsMonitor</B><BR/>defaults-only>, shape=plaintext];
"HltDecReportsMonitor/HLT1DecReportsMonitor_in_Input" [fillcolor=deepskyblue1, label=Input, style=filled];
"HltDecReportsMonitor/HLT1DecReportsMonitor" -> "HltDecReportsMonitor/HLT1DecReportsMonitor_in_Input"  [minlen=0, style=invis];
}

"ExecutionReportsWriter/ExecutionReportsWriter_dd49b7d1_out_DecReportsLocation" -> "HltDecReportsMonitor/HLT1DecReportsMonitor_in_Input";
subgraph "cluster_ExecutionReportsWriter/ExecutionReportsWriter_dd49b7d1" {
bgcolor=aliceblue;
label="";
"ExecutionReportsWriter/ExecutionReportsWriter_dd49b7d1" [label=<<B>ExecutionReportsWriter/ExecutionReportsWriter_dd49b7d1</B><BR/>Persist = [&#x27;Hlt1DiMuonHighMass&#x27;, &#x27;Hlt1DiMuonLowMass&#x27;, &#x27;Hlt1L[...]1TrackMVA&#x27;, &#x27;Hlt1TrackMuonMVA&#x27;, &#x27;Hlt1TwoTrackMVA&#x27;]<BR/>ANNSvcKey = Hlt1SelectionID<BR/>TCK = 2714783046>, shape=plaintext];
"ExecutionReportsWriter/ExecutionReportsWriter_dd49b7d1_out_DecReportsLocation" [fillcolor=coral1, label=DecReportsLocation, style=filled];
"ExecutionReportsWriter/ExecutionReportsWriter_dd49b7d1" -> "ExecutionReportsWriter/ExecutionReportsWriter_dd49b7d1_out_DecReportsLocation"  [minlen=0, style=invis];
}

subgraph "cluster_DeterministicPrescaler/HLT1PostscaleDecReportsMonitor" {
bgcolor=aliceblue;
label="";
"DeterministicPrescaler/HLT1PostscaleDecReportsMonitor" [label=<<B>DeterministicPrescaler/HLT1PostscaleDecReportsMonitor</B><BR/>AcceptFraction = 0.0<BR/>SeedName = HLT1PostscaleDecReportsMonitor>, shape=plaintext];
"DeterministicPrescaler/HLT1PostscaleDecReportsMonitor_in_ODINLocation" [fillcolor=deepskyblue1, label=ODINLocation, style=filled];
"DeterministicPrescaler/HLT1PostscaleDecReportsMonitor" -> "DeterministicPrescaler/HLT1PostscaleDecReportsMonitor_in_ODINLocation"  [minlen=0, style=invis];
}

"createODIN/Decode_ODIN_out_ODIN" -> "DeterministicPrescaler/HLT1PostscaleDecReportsMonitor_in_ODINLocation";
subgraph "cluster_createODIN/Decode_ODIN" {
bgcolor=aliceblue;
label="";
"createODIN/Decode_ODIN" [label=<<B>createODIN/Decode_ODIN</B><BR/>defaults-only>, shape=plaintext];
"createODIN/Decode_ODIN_in_RawBanks" [fillcolor=deepskyblue1, label=RawBanks, style=filled];
"createODIN/Decode_ODIN" -> "createODIN/Decode_ODIN_in_RawBanks"  [minlen=0, style=invis];
"createODIN/Decode_ODIN_out_ODIN" [fillcolor=coral1, label=ODIN, style=filled];
"createODIN/Decode_ODIN" -> "createODIN/Decode_ODIN_out_ODIN"  [minlen=0, style=invis];
}

"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_out_RawBankLocations" -> "createODIN/Decode_ODIN_in_RawBanks";
subgraph "cluster_LHCb::UnpackRawEvent/UnpackRawEvent_ODIN" {
bgcolor=aliceblue;
label="";
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN" [label=<<B>LHCb::UnpackRawEvent/UnpackRawEvent_ODIN</B><BR/>BankTypes = [&#x27;ODIN&#x27;]<BR/>RawBankLocations = /Event/RawBanks/ODIN>, shape=plaintext];
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_in_RawEventLocation" [fillcolor=deepskyblue1, label=RawEventLocation, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN" -> "LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_in_RawEventLocation"  [minlen=0, style=invis];
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_out_RawBankLocations" [fillcolor=coral1, label=RawBankLocations, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN" -> "LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_out_RawBankLocations"  [minlen=0, style=invis];
}

"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" -> "LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_in_RawEventLocation";
subgraph "cluster_Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent" {
bgcolor=aliceblue;
label="";
"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent" [label=<<B>Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent</B><BR/>Output = /Event/DAQ/RawEvent>, shape=plaintext];
"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" [fillcolor=coral1, label=Output, style=filled];
"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent" -> "Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output"  [minlen=0, style=invis];
}

subgraph "cluster_ExecutionReportsWriter/ExecutionReportsWriter_dd49b7d1" {
bgcolor=aliceblue;
label="";
"ExecutionReportsWriter/ExecutionReportsWriter_dd49b7d1" [label=<<B>ExecutionReportsWriter/ExecutionReportsWriter_dd49b7d1</B><BR/>Persist = [&#x27;Hlt1DiMuonHighMass&#x27;, &#x27;Hlt1DiMuonLowMass&#x27;, &#x27;Hlt1L[...]1TrackMVA&#x27;, &#x27;Hlt1TrackMuonMVA&#x27;, &#x27;Hlt1TwoTrackMVA&#x27;]<BR/>ANNSvcKey = Hlt1SelectionID<BR/>TCK = 2714783046>, shape=plaintext];
"ExecutionReportsWriter/ExecutionReportsWriter_dd49b7d1_out_DecReportsLocation" [fillcolor=coral1, label=DecReportsLocation, style=filled];
"ExecutionReportsWriter/ExecutionReportsWriter_dd49b7d1" -> "ExecutionReportsWriter/ExecutionReportsWriter_dd49b7d1_out_DecReportsLocation"  [minlen=0, style=invis];
}

subgraph "cluster_HltDecReportsWriter/HltDecReportsWriter_4997547a" {
bgcolor=aliceblue;
label="";
"HltDecReportsWriter/HltDecReportsWriter_4997547a" [label=<<B>HltDecReportsWriter/HltDecReportsWriter_4997547a</B><BR/>SourceID = Hlt1<BR/>EncodingKey = 2714783046>, shape=plaintext];
"HltDecReportsWriter/HltDecReportsWriter_4997547a_in_InputHltDecReportsLocation" [fillcolor=deepskyblue1, label=InputHltDecReportsLocation, style=filled];
"HltDecReportsWriter/HltDecReportsWriter_4997547a" -> "HltDecReportsWriter/HltDecReportsWriter_4997547a_in_InputHltDecReportsLocation"  [minlen=0, style=invis];
"HltDecReportsWriter/HltDecReportsWriter_4997547a_out_OutputView" [fillcolor=coral1, label=OutputView, style=filled];
"HltDecReportsWriter/HltDecReportsWriter_4997547a" -> "HltDecReportsWriter/HltDecReportsWriter_4997547a_out_OutputView"  [minlen=0, style=invis];
"HltDecReportsWriter/HltDecReportsWriter_4997547a_out_OutputRawEvent" [fillcolor=coral1, label=OutputRawEvent, style=filled];
"HltDecReportsWriter/HltDecReportsWriter_4997547a" -> "HltDecReportsWriter/HltDecReportsWriter_4997547a_out_OutputRawEvent"  [minlen=0, style=invis];
}

"ExecutionReportsWriter/ExecutionReportsWriter_dd49b7d1_out_DecReportsLocation" -> "HltDecReportsWriter/HltDecReportsWriter_4997547a_in_InputHltDecReportsLocation";
subgraph "cluster_ExecutionReportsWriter/ExecutionReportsWriter_dd49b7d1" {
bgcolor=aliceblue;
label="";
"ExecutionReportsWriter/ExecutionReportsWriter_dd49b7d1" [label=<<B>ExecutionReportsWriter/ExecutionReportsWriter_dd49b7d1</B><BR/>Persist = [&#x27;Hlt1DiMuonHighMass&#x27;, &#x27;Hlt1DiMuonLowMass&#x27;, &#x27;Hlt1L[...]1TrackMVA&#x27;, &#x27;Hlt1TrackMuonMVA&#x27;, &#x27;Hlt1TwoTrackMVA&#x27;]<BR/>ANNSvcKey = Hlt1SelectionID<BR/>TCK = 2714783046>, shape=plaintext];
"ExecutionReportsWriter/ExecutionReportsWriter_dd49b7d1_out_DecReportsLocation" [fillcolor=coral1, label=DecReportsLocation, style=filled];
"ExecutionReportsWriter/ExecutionReportsWriter_dd49b7d1" -> "ExecutionReportsWriter/ExecutionReportsWriter_dd49b7d1_out_DecReportsLocation"  [minlen=0, style=invis];
}

subgraph "cluster_HltSelReportsWriter/HltSelReportsWriter_59c584ba" {
bgcolor=aliceblue;
label="";
"HltSelReportsWriter/HltSelReportsWriter_59c584ba" [label=<<B>HltSelReportsWriter/HltSelReportsWriter_59c584ba</B><BR/>SourceID = Hlt1<BR/>EncodingKey = 2714783046>, shape=plaintext];
"HltSelReportsWriter/HltSelReportsWriter_59c584ba_in_DecReports" [fillcolor=deepskyblue1, label=DecReports, style=filled];
"HltSelReportsWriter/HltSelReportsWriter_59c584ba" -> "HltSelReportsWriter/HltSelReportsWriter_59c584ba_in_DecReports"  [minlen=0, style=invis];
"HltSelReportsWriter/HltSelReportsWriter_59c584ba_in_SelReports" [fillcolor=deepskyblue1, label=SelReports, style=filled];
"HltSelReportsWriter/HltSelReportsWriter_59c584ba" -> "HltSelReportsWriter/HltSelReportsWriter_59c584ba_in_SelReports"  [minlen=0, style=invis];
"HltSelReportsWriter/HltSelReportsWriter_59c584ba_in_ObjectSummaries" [fillcolor=deepskyblue1, label=ObjectSummaries, style=filled];
"HltSelReportsWriter/HltSelReportsWriter_59c584ba" -> "HltSelReportsWriter/HltSelReportsWriter_59c584ba_in_ObjectSummaries"  [minlen=0, style=invis];
"HltSelReportsWriter/HltSelReportsWriter_59c584ba_out_OutputView" [fillcolor=coral1, label=OutputView, style=filled];
"HltSelReportsWriter/HltSelReportsWriter_59c584ba" -> "HltSelReportsWriter/HltSelReportsWriter_59c584ba_out_OutputView"  [minlen=0, style=invis];
"HltSelReportsWriter/HltSelReportsWriter_59c584ba_out_RawEvent" [fillcolor=coral1, label=RawEvent, style=filled];
"HltSelReportsWriter/HltSelReportsWriter_59c584ba" -> "HltSelReportsWriter/HltSelReportsWriter_59c584ba_out_RawEvent"  [minlen=0, style=invis];
}

"ExecutionReportsWriter/ExecutionReportsWriter_dd49b7d1_out_DecReportsLocation" -> "HltSelReportsWriter/HltSelReportsWriter_59c584ba_in_DecReports";
subgraph "cluster_ExecutionReportsWriter/ExecutionReportsWriter_dd49b7d1" {
bgcolor=aliceblue;
label="";
"ExecutionReportsWriter/ExecutionReportsWriter_dd49b7d1" [label=<<B>ExecutionReportsWriter/ExecutionReportsWriter_dd49b7d1</B><BR/>Persist = [&#x27;Hlt1DiMuonHighMass&#x27;, &#x27;Hlt1DiMuonLowMass&#x27;, &#x27;Hlt1L[...]1TrackMVA&#x27;, &#x27;Hlt1TrackMuonMVA&#x27;, &#x27;Hlt1TwoTrackMVA&#x27;]<BR/>ANNSvcKey = Hlt1SelectionID<BR/>TCK = 2714783046>, shape=plaintext];
"ExecutionReportsWriter/ExecutionReportsWriter_dd49b7d1_out_DecReportsLocation" [fillcolor=coral1, label=DecReportsLocation, style=filled];
"ExecutionReportsWriter/ExecutionReportsWriter_dd49b7d1" -> "ExecutionReportsWriter/ExecutionReportsWriter_dd49b7d1_out_DecReportsLocation"  [minlen=0, style=invis];
}

"SelReportsMaker/SelReportsMaker_98f655d1_out_SelReports" -> "HltSelReportsWriter/HltSelReportsWriter_59c584ba_in_SelReports";
subgraph "cluster_SelReportsMaker/SelReportsMaker_98f655d1" {
bgcolor=aliceblue;
label="";
"SelReportsMaker/SelReportsMaker_98f655d1" [label=<<B>SelReportsMaker/SelReportsMaker_98f655d1</B><BR/>SelectionNames = [&#x27;Hlt1DiMuonHighMassDecision&#x27;, &#x27;Hlt1DiMuonLowMassD[...]1TrackMuonMVADecision&#x27;, &#x27;Hlt1TwoTrackMVADecision&#x27;]<BR/>CandidateTypes = [&#x27;std::vector&lt;LHCb::RecVertex,std::allocator&lt;LHCb:[...]HCb::RecVertex,std::allocator&lt;LHCb::RecVertex&gt; &gt;&#x27;]<BR/>EncodingKey = 2714783046>, shape=plaintext];
"SelReportsMaker/SelReportsMaker_98f655d1_in_DecReports" [fillcolor=deepskyblue1, label=DecReports, style=filled];
"SelReportsMaker/SelReportsMaker_98f655d1" -> "SelReportsMaker/SelReportsMaker_98f655d1_in_DecReports"  [minlen=0, style=invis];
"SelReportsMaker/SelReportsMaker_98f655d1_in_Inputs" [fillcolor=deepskyblue1, label=Inputs, style=filled];
"SelReportsMaker/SelReportsMaker_98f655d1" -> "SelReportsMaker/SelReportsMaker_98f655d1_in_Inputs"  [minlen=0, style=invis];
"SelReportsMaker/SelReportsMaker_98f655d1_out_ObjectSummaries" [fillcolor=coral1, label=ObjectSummaries, style=filled];
"SelReportsMaker/SelReportsMaker_98f655d1" -> "SelReportsMaker/SelReportsMaker_98f655d1_out_ObjectSummaries"  [minlen=0, style=invis];
"SelReportsMaker/SelReportsMaker_98f655d1_out_SelReports" [fillcolor=coral1, label=SelReports, style=filled];
"SelReportsMaker/SelReportsMaker_98f655d1" -> "SelReportsMaker/SelReportsMaker_98f655d1_out_SelReports"  [minlen=0, style=invis];
}

"ExecutionReportsWriter/ExecutionReportsWriter_dd49b7d1_out_DecReportsLocation" -> "SelReportsMaker/SelReportsMaker_98f655d1_in_DecReports";
"LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex_5d9c3a9d_out_OutputVertices" -> "SelReportsMaker/SelReportsMaker_98f655d1_in_Inputs";
subgraph "cluster_LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex_5d9c3a9d" {
bgcolor=aliceblue;
label="";
"LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex_5d9c3a9d" [label=<<B>LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex_5d9c3a9d</B><BR/>defaults-only>, shape=plaintext];
"LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex_5d9c3a9d_in_TracksInVertices" [fillcolor=deepskyblue1, label=TracksInVertices, style=filled];
"LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex_5d9c3a9d" -> "LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex_5d9c3a9d_in_TracksInVertices"  [minlen=0, style=invis];
"LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex_5d9c3a9d_in_ConvertedTracks" [fillcolor=deepskyblue1, label=ConvertedTracks, style=filled];
"LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex_5d9c3a9d" -> "LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex_5d9c3a9d_in_ConvertedTracks"  [minlen=0, style=invis];
"LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex_5d9c3a9d_in_InputComposites" [fillcolor=deepskyblue1, label=InputComposites, style=filled];
"LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex_5d9c3a9d" -> "LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex_5d9c3a9d_in_InputComposites"  [minlen=0, style=invis];
"LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex_5d9c3a9d_out_OutputVertices" [fillcolor=coral1, label=OutputVertices, style=filled];
"LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex_5d9c3a9d" -> "LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex_5d9c3a9d_out_OutputVertices"  [minlen=0, style=invis];
}

"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1d9541b1_out_Output" -> "LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex_5d9c3a9d_in_TracksInVertices";
subgraph "cluster_PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1d9541b1" {
bgcolor=aliceblue;
label="";
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1d9541b1" [label=<<B>PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1d9541b1</B><BR/>Cut = FILTER(Functor=( ISMUON &amp; ( ( MAGNITUDE @ THREEMOM[...] ( ( VALUE_OR(Value=nan) @ _CHI2DOF ) &lt; 100.0 ) ))>, shape=plaintext];
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1d9541b1_in_Input" [fillcolor=deepskyblue1, label=Input, style=filled];
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1d9541b1" -> "PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1d9541b1_in_Input"  [minlen=0, style=invis];
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1d9541b1_in_Cut_PyConfDataDependencies" [fillcolor=deepskyblue1, label=Cut_PyConfDataDependencies, style=filled];
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1d9541b1" -> "PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1d9541b1_in_Cut_PyConfDataDependencies"  [minlen=0, style=invis];
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1d9541b1_out_OutputStorage" [fillcolor=coral1, label=OutputStorage, style=filled];
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1d9541b1" -> "PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1d9541b1_out_OutputStorage"  [minlen=0, style=invis];
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1d9541b1_out_Output" [fillcolor=coral1, label=Output, style=filled];
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1d9541b1" -> "PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1d9541b1_out_Output"  [minlen=0, style=invis];
}

"MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89_out_Output" -> "PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1d9541b1_in_Input";
subgraph "cluster_MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89" {
bgcolor=aliceblue;
label="";
"MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89" [label=<<B>MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89</B><BR/>defaults-only>, shape=plaintext];
"MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89_in_Input1" [fillcolor=deepskyblue1, label=Input1, style=filled];
"MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89" -> "MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89_in_Input1"  [minlen=0, style=invis];
"MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89_in_Input2" [fillcolor=deepskyblue1, label=Input2, style=filled];
"MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89" -> "MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89_in_Input2"  [minlen=0, style=invis];
"MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89_out_Output" [fillcolor=coral1, label=Output, style=filled];
"MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89" -> "MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89_out_Output"  [minlen=0, style=invis];
}

"VeloKalman/VeloKalman_bf73c006_out_OutputTracksLocation" -> "MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89_in_Input1";
subgraph "cluster_VeloKalman/VeloKalman_bf73c006" {
bgcolor=aliceblue;
label="";
"VeloKalman/VeloKalman_bf73c006" [label=<<B>VeloKalman/VeloKalman_bf73c006</B><BR/>defaults-only>, shape=plaintext];
"VeloKalman/VeloKalman_bf73c006_in_HitsLocation" [fillcolor=deepskyblue1, label=HitsLocation, style=filled];
"VeloKalman/VeloKalman_bf73c006" -> "VeloKalman/VeloKalman_bf73c006_in_HitsLocation"  [minlen=0, style=invis];
"VeloKalman/VeloKalman_bf73c006_in_TracksVPLocation" [fillcolor=deepskyblue1, label=TracksVPLocation, style=filled];
"VeloKalman/VeloKalman_bf73c006" -> "VeloKalman/VeloKalman_bf73c006_in_TracksVPLocation"  [minlen=0, style=invis];
"VeloKalman/VeloKalman_bf73c006_in_TracksFTLocation" [fillcolor=deepskyblue1, label=TracksFTLocation, style=filled];
"VeloKalman/VeloKalman_bf73c006" -> "VeloKalman/VeloKalman_bf73c006_in_TracksFTLocation"  [minlen=0, style=invis];
"VeloKalman/VeloKalman_bf73c006_in_UniqueIDGenerator" [fillcolor=deepskyblue1, label=UniqueIDGenerator, style=filled];
"VeloKalman/VeloKalman_bf73c006" -> "VeloKalman/VeloKalman_bf73c006_in_UniqueIDGenerator"  [minlen=0, style=invis];
"VeloKalman/VeloKalman_bf73c006_out_OutputTracksLocation" [fillcolor=coral1, label=OutputTracksLocation, style=filled];
"VeloKalman/VeloKalman_bf73c006" -> "VeloKalman/VeloKalman_bf73c006_out_OutputTracksLocation"  [minlen=0, style=invis];
}

"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_HitsLocation" -> "VeloKalman/VeloKalman_bf73c006_in_HitsLocation";
subgraph "cluster_VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651" {
bgcolor=aliceblue;
label="";
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651" [label=<<B>VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651</B><BR/>SensorMasks = (False, False, False, False, False, False, False, [...], False, False, False, False, False, False, False)<BR/>MaxScatterSeeding = 0.1<BR/>MaxScatterForwarding = 0.1<BR/>MaxScatter3hits = 0.02<BR/>SkipForward = 1>, shape=plaintext];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_in_RawBanks" [fillcolor=deepskyblue1, label=RawBanks, style=filled];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651" -> "VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_in_RawBanks"  [minlen=0, style=invis];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksLocation" [fillcolor=coral1, label=TracksLocation, style=filled];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651" -> "VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksLocation"  [minlen=0, style=invis];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksBackwardLocation" [fillcolor=coral1, label=TracksBackwardLocation, style=filled];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651" -> "VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksBackwardLocation"  [minlen=0, style=invis];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_HitsLocation" [fillcolor=coral1, label=HitsLocation, style=filled];
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651" -> "VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_HitsLocation"  [minlen=0, style=invis];
}

"LHCb::UnpackRawEvent/UnpackRawEvent_VP_out_RawBankLocations" -> "VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_in_RawBanks";
subgraph "cluster_LHCb::UnpackRawEvent/UnpackRawEvent_VP" {
bgcolor=aliceblue;
label="";
"LHCb::UnpackRawEvent/UnpackRawEvent_VP" [label=<<B>LHCb::UnpackRawEvent/UnpackRawEvent_VP</B><BR/>BankTypes = [&#x27;VP&#x27;]<BR/>RawBankLocations = /Event/RawBanks/VP>, shape=plaintext];
"LHCb::UnpackRawEvent/UnpackRawEvent_VP_in_RawEventLocation" [fillcolor=deepskyblue1, label=RawEventLocation, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_VP" -> "LHCb::UnpackRawEvent/UnpackRawEvent_VP_in_RawEventLocation"  [minlen=0, style=invis];
"LHCb::UnpackRawEvent/UnpackRawEvent_VP_out_RawBankLocations" [fillcolor=coral1, label=RawBankLocations, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_VP" -> "LHCb::UnpackRawEvent/UnpackRawEvent_VP_out_RawBankLocations"  [minlen=0, style=invis];
}

"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" -> "LHCb::UnpackRawEvent/UnpackRawEvent_VP_in_RawEventLocation";
subgraph "cluster_Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent" {
bgcolor=aliceblue;
label="";
"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent" [label=<<B>Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent</B><BR/>Output = /Event/DAQ/RawEvent>, shape=plaintext];
"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" [fillcolor=coral1, label=Output, style=filled];
"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent" -> "Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output"  [minlen=0, style=invis];
}

"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksLocation" -> "VeloKalman/VeloKalman_bf73c006_in_TracksVPLocation";
"SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1_out_Output" -> "VeloKalman/VeloKalman_bf73c006_in_TracksFTLocation";
subgraph "cluster_SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1" {
bgcolor=aliceblue;
label="";
"SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1" [label=<<B>SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1</B><BR/>defaults-only>, shape=plaintext];
"SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1_in_HitsLocation" [fillcolor=deepskyblue1, label=HitsLocation, style=filled];
"SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1" -> "SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1_in_HitsLocation"  [minlen=0, style=invis];
"SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1_in_InputTracks" [fillcolor=deepskyblue1, label=InputTracks, style=filled];
"SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1" -> "SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1_in_InputTracks"  [minlen=0, style=invis];
"SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1_out_Output" [fillcolor=coral1, label=Output, style=filled];
"SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1" -> "SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1_out_Output"  [minlen=0, style=invis];
}

"SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19_out_Output" -> "SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1_in_HitsLocation";
subgraph "cluster_SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19" {
bgcolor=aliceblue;
label="";
"SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19" [label=<<B>SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19</B><BR/>defaults-only>, shape=plaintext];
"SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19_in_HitsLocation" [fillcolor=deepskyblue1, label=HitsLocation, style=filled];
"SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19" -> "SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19_in_HitsLocation"  [minlen=0, style=invis];
"SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19_out_Output" [fillcolor=coral1, label=Output, style=filled];
"SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19" -> "SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19_out_Output"  [minlen=0, style=invis];
}

"FTRawBankDecoder/FTRawBankDecoder_out_OutputLocation" -> "SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19_in_HitsLocation";
subgraph "cluster_FTRawBankDecoder/FTRawBankDecoder" {
bgcolor=aliceblue;
label="";
"FTRawBankDecoder/FTRawBankDecoder" [label=<<B>FTRawBankDecoder/FTRawBankDecoder</B><BR/>defaults-only>, shape=plaintext];
"FTRawBankDecoder/FTRawBankDecoder_in_Odin" [fillcolor=deepskyblue1, label=Odin, style=filled];
"FTRawBankDecoder/FTRawBankDecoder" -> "FTRawBankDecoder/FTRawBankDecoder_in_Odin"  [minlen=0, style=invis];
"FTRawBankDecoder/FTRawBankDecoder_in_RawBanks" [fillcolor=deepskyblue1, label=RawBanks, style=filled];
"FTRawBankDecoder/FTRawBankDecoder" -> "FTRawBankDecoder/FTRawBankDecoder_in_RawBanks"  [minlen=0, style=invis];
"FTRawBankDecoder/FTRawBankDecoder_out_OutputLocation" [fillcolor=coral1, label=OutputLocation, style=filled];
"FTRawBankDecoder/FTRawBankDecoder" -> "FTRawBankDecoder/FTRawBankDecoder_out_OutputLocation"  [minlen=0, style=invis];
}

"createODIN/Decode_ODIN_out_ODIN" -> "FTRawBankDecoder/FTRawBankDecoder_in_Odin";
subgraph "cluster_createODIN/Decode_ODIN" {
bgcolor=aliceblue;
label="";
"createODIN/Decode_ODIN" [label=<<B>createODIN/Decode_ODIN</B><BR/>defaults-only>, shape=plaintext];
"createODIN/Decode_ODIN_in_RawBanks" [fillcolor=deepskyblue1, label=RawBanks, style=filled];
"createODIN/Decode_ODIN" -> "createODIN/Decode_ODIN_in_RawBanks"  [minlen=0, style=invis];
"createODIN/Decode_ODIN_out_ODIN" [fillcolor=coral1, label=ODIN, style=filled];
"createODIN/Decode_ODIN" -> "createODIN/Decode_ODIN_out_ODIN"  [minlen=0, style=invis];
}

"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_out_RawBankLocations" -> "createODIN/Decode_ODIN_in_RawBanks";
subgraph "cluster_LHCb::UnpackRawEvent/UnpackRawEvent_ODIN" {
bgcolor=aliceblue;
label="";
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN" [label=<<B>LHCb::UnpackRawEvent/UnpackRawEvent_ODIN</B><BR/>BankTypes = [&#x27;ODIN&#x27;]<BR/>RawBankLocations = /Event/RawBanks/ODIN>, shape=plaintext];
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_in_RawEventLocation" [fillcolor=deepskyblue1, label=RawEventLocation, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN" -> "LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_in_RawEventLocation"  [minlen=0, style=invis];
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_out_RawBankLocations" [fillcolor=coral1, label=RawBankLocations, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN" -> "LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_out_RawBankLocations"  [minlen=0, style=invis];
}

"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" -> "LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_in_RawEventLocation";
"LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster_out_RawBankLocations" -> "FTRawBankDecoder/FTRawBankDecoder_in_RawBanks";
subgraph "cluster_LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster" {
bgcolor=aliceblue;
label="";
"LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster" [label=<<B>LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster</B><BR/>BankTypes = [&#x27;FTCluster&#x27;]<BR/>RawBankLocations = /Event/RawBanks/FTCluster>, shape=plaintext];
"LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster_in_RawEventLocation" [fillcolor=deepskyblue1, label=RawEventLocation, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster" -> "LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster_in_RawEventLocation"  [minlen=0, style=invis];
"LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster_out_RawBankLocations" [fillcolor=coral1, label=RawBankLocations, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster" -> "LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster_out_RawBankLocations"  [minlen=0, style=invis];
}

"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" -> "LHCb::UnpackRawEvent/UnpackRawEvent_FTCluster_in_RawEventLocation";
"PrVeloUT/PrVeloUT_4eab5c1b_out_OutputTracksName" -> "SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1_in_InputTracks";
subgraph "cluster_PrVeloUT/PrVeloUT_4eab5c1b" {
bgcolor=aliceblue;
label="";
"PrVeloUT/PrVeloUT_4eab5c1b" [label=<<B>PrVeloUT/PrVeloUT_4eab5c1b</B><BR/>defaults-only>, shape=plaintext];
"PrVeloUT/PrVeloUT_4eab5c1b_in_InputTracksName" [fillcolor=deepskyblue1, label=InputTracksName, style=filled];
"PrVeloUT/PrVeloUT_4eab5c1b" -> "PrVeloUT/PrVeloUT_4eab5c1b_in_InputTracksName"  [minlen=0, style=invis];
"PrVeloUT/PrVeloUT_4eab5c1b_in_UTHits" [fillcolor=deepskyblue1, label=UTHits, style=filled];
"PrVeloUT/PrVeloUT_4eab5c1b" -> "PrVeloUT/PrVeloUT_4eab5c1b_in_UTHits"  [minlen=0, style=invis];
"PrVeloUT/PrVeloUT_4eab5c1b_out_OutputTracksName" [fillcolor=coral1, label=OutputTracksName, style=filled];
"PrVeloUT/PrVeloUT_4eab5c1b" -> "PrVeloUT/PrVeloUT_4eab5c1b_out_OutputTracksName"  [minlen=0, style=invis];
}

"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksLocation" -> "PrVeloUT/PrVeloUT_4eab5c1b_in_InputTracksName";
"PrStorePrUTHits/PrStorePrUTHits_df75b912_out_UTHitsLocation" -> "PrVeloUT/PrVeloUT_4eab5c1b_in_UTHits";
subgraph "cluster_PrStorePrUTHits/PrStorePrUTHits_df75b912" {
bgcolor=aliceblue;
label="";
"PrStorePrUTHits/PrStorePrUTHits_df75b912" [label=<<B>PrStorePrUTHits/PrStorePrUTHits_df75b912</B><BR/>isCluster = True<BR/>positionMethod = GeoWeighting>, shape=plaintext];
"PrStorePrUTHits/PrStorePrUTHits_df75b912_in_RawBanks" [fillcolor=deepskyblue1, label=RawBanks, style=filled];
"PrStorePrUTHits/PrStorePrUTHits_df75b912" -> "PrStorePrUTHits/PrStorePrUTHits_df75b912_in_RawBanks"  [minlen=0, style=invis];
"PrStorePrUTHits/PrStorePrUTHits_df75b912_out_UTHitsLocation" [fillcolor=coral1, label=UTHitsLocation, style=filled];
"PrStorePrUTHits/PrStorePrUTHits_df75b912" -> "PrStorePrUTHits/PrStorePrUTHits_df75b912_out_UTHitsLocation"  [minlen=0, style=invis];
}

"LHCb::UnpackRawEvent/UnpackRawEvent_UT_out_RawBankLocations" -> "PrStorePrUTHits/PrStorePrUTHits_df75b912_in_RawBanks";
subgraph "cluster_LHCb::UnpackRawEvent/UnpackRawEvent_UT" {
bgcolor=aliceblue;
label="";
"LHCb::UnpackRawEvent/UnpackRawEvent_UT" [label=<<B>LHCb::UnpackRawEvent/UnpackRawEvent_UT</B><BR/>BankTypes = [&#x27;UT&#x27;]<BR/>RawBankLocations = /Event/RawBanks/UT>, shape=plaintext];
"LHCb::UnpackRawEvent/UnpackRawEvent_UT_in_RawEventLocation" [fillcolor=deepskyblue1, label=RawEventLocation, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_UT" -> "LHCb::UnpackRawEvent/UnpackRawEvent_UT_in_RawEventLocation"  [minlen=0, style=invis];
"LHCb::UnpackRawEvent/UnpackRawEvent_UT_out_RawBankLocations" [fillcolor=coral1, label=RawBankLocations, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_UT" -> "LHCb::UnpackRawEvent/UnpackRawEvent_UT_out_RawBankLocations"  [minlen=0, style=invis];
}

"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" -> "LHCb::UnpackRawEvent/UnpackRawEvent_UT_in_RawEventLocation";
"UniqueIDGeneratorAlg/UniqueIDGeneratorAlg_26e527e9_out_Output" -> "VeloKalman/VeloKalman_bf73c006_in_UniqueIDGenerator";
subgraph "cluster_UniqueIDGeneratorAlg/UniqueIDGeneratorAlg_26e527e9" {
bgcolor=aliceblue;
label="";
"UniqueIDGeneratorAlg/UniqueIDGeneratorAlg_26e527e9" [label=<<B>UniqueIDGeneratorAlg/UniqueIDGeneratorAlg_26e527e9</B><BR/>defaults-only>, shape=plaintext];
"UniqueIDGeneratorAlg/UniqueIDGeneratorAlg_26e527e9_out_Output" [fillcolor=coral1, label=Output, style=filled];
"UniqueIDGeneratorAlg/UniqueIDGeneratorAlg_26e527e9" -> "UniqueIDGeneratorAlg/UniqueIDGeneratorAlg_26e527e9_out_Output"  [minlen=0, style=invis];
}

"MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4_out_OutputMuonPID" -> "MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89_in_Input2";
subgraph "cluster_MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4" {
bgcolor=aliceblue;
label="";
"MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4" [label=<<B>MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4</B><BR/>runMVA = False>, shape=plaintext];
"MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4_in_InputTracks" [fillcolor=deepskyblue1, label=InputTracks, style=filled];
"MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4" -> "MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4_in_InputTracks"  [minlen=0, style=invis];
"MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4_in_InputMuonHits" [fillcolor=deepskyblue1, label=InputMuonHits, style=filled];
"MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4" -> "MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4_in_InputMuonHits"  [minlen=0, style=invis];
"MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4_out_OutputMuonPID" [fillcolor=coral1, label=OutputMuonPID, style=filled];
"MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4" -> "MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4_out_OutputMuonPID"  [minlen=0, style=invis];
}

"SciFiTrackForwarding/SciFiTrackForwarding_3f97d4b1_out_Output" -> "MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4_in_InputTracks";
"MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab_out_HitContainer" -> "MuonIDHlt1Alg/MuonIDHlt1Alg_77e221a4_in_InputMuonHits";
subgraph "cluster_MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab" {
bgcolor=aliceblue;
label="";
"MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab" [label=<<B>MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab</B><BR/>defaults-only>, shape=plaintext];
"MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab_in_RawBanks" [fillcolor=deepskyblue1, label=RawBanks, style=filled];
"MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab" -> "MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab_in_RawBanks"  [minlen=0, style=invis];
"MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab_in_ErrorRawBanks" [fillcolor=deepskyblue1, label=ErrorRawBanks, style=filled];
"MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab" -> "MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab_in_ErrorRawBanks"  [minlen=0, style=invis];
"MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab_out_HitContainer" [fillcolor=coral1, label=HitContainer, style=filled];
"MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab" -> "MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab_out_HitContainer"  [minlen=0, style=invis];
}

"LHCb::UnpackRawEvent/UnpackRawEvent_Muon_out_RawBankLocations" -> "MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab_in_RawBanks";
subgraph "cluster_LHCb::UnpackRawEvent/UnpackRawEvent_Muon" {
bgcolor=aliceblue;
label="";
"LHCb::UnpackRawEvent/UnpackRawEvent_Muon" [label=<<B>LHCb::UnpackRawEvent/UnpackRawEvent_Muon</B><BR/>BankTypes = [&#x27;Muon&#x27;]<BR/>RawBankLocations = /Event/RawBanks/Muon>, shape=plaintext];
"LHCb::UnpackRawEvent/UnpackRawEvent_Muon_in_RawEventLocation" [fillcolor=deepskyblue1, label=RawEventLocation, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_Muon" -> "LHCb::UnpackRawEvent/UnpackRawEvent_Muon_in_RawEventLocation"  [minlen=0, style=invis];
"LHCb::UnpackRawEvent/UnpackRawEvent_Muon_out_RawBankLocations" [fillcolor=coral1, label=RawBankLocations, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_Muon" -> "LHCb::UnpackRawEvent/UnpackRawEvent_Muon_out_RawBankLocations"  [minlen=0, style=invis];
}

"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" -> "LHCb::UnpackRawEvent/UnpackRawEvent_Muon_in_RawEventLocation";
"LHCb::UnpackRawEvent/UnpackRawEvent_MuonError_out_RawBankLocations" -> "MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab_in_ErrorRawBanks";
subgraph "cluster_LHCb::UnpackRawEvent/UnpackRawEvent_MuonError" {
bgcolor=aliceblue;
label="";
"LHCb::UnpackRawEvent/UnpackRawEvent_MuonError" [label=<<B>LHCb::UnpackRawEvent/UnpackRawEvent_MuonError</B><BR/>BankTypes = [&#x27;MuonError&#x27;]<BR/>RawBankLocations = /Event/RawBanks/MuonError>, shape=plaintext];
"LHCb::UnpackRawEvent/UnpackRawEvent_MuonError_in_RawEventLocation" [fillcolor=deepskyblue1, label=RawEventLocation, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_MuonError" -> "LHCb::UnpackRawEvent/UnpackRawEvent_MuonError_in_RawEventLocation"  [minlen=0, style=invis];
"LHCb::UnpackRawEvent/UnpackRawEvent_MuonError_out_RawBankLocations" [fillcolor=coral1, label=RawBankLocations, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_MuonError" -> "LHCb::UnpackRawEvent/UnpackRawEvent_MuonError_out_RawBankLocations"  [minlen=0, style=invis];
}

"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" -> "LHCb::UnpackRawEvent/UnpackRawEvent_MuonError_in_RawEventLocation";
"fromV3TrackWithMuonIDV1TrackVector/fromV3TrackWithMuonIDV1TrackVector_ff6b6a59_out_OutputTracks" -> "LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex_5d9c3a9d_in_ConvertedTracks";
subgraph "cluster_fromV3TrackWithMuonIDV1TrackVector/fromV3TrackWithMuonIDV1TrackVector_ff6b6a59" {
bgcolor=aliceblue;
label="";
"fromV3TrackWithMuonIDV1TrackVector/fromV3TrackWithMuonIDV1TrackVector_ff6b6a59" [label=<<B>fromV3TrackWithMuonIDV1TrackVector/fromV3TrackWithMuonIDV1TrackVector_ff6b6a59</B><BR/>defaults-only>, shape=plaintext];
"fromV3TrackWithMuonIDV1TrackVector/fromV3TrackWithMuonIDV1TrackVector_ff6b6a59_in_InputTracks" [fillcolor=deepskyblue1, label=InputTracks, style=filled];
"fromV3TrackWithMuonIDV1TrackVector/fromV3TrackWithMuonIDV1TrackVector_ff6b6a59" -> "fromV3TrackWithMuonIDV1TrackVector/fromV3TrackWithMuonIDV1TrackVector_ff6b6a59_in_InputTracks"  [minlen=0, style=invis];
"fromV3TrackWithMuonIDV1TrackVector/fromV3TrackWithMuonIDV1TrackVector_ff6b6a59_out_OutputTracks" [fillcolor=coral1, label=OutputTracks, style=filled];
"fromV3TrackWithMuonIDV1TrackVector/fromV3TrackWithMuonIDV1TrackVector_ff6b6a59" -> "fromV3TrackWithMuonIDV1TrackVector/fromV3TrackWithMuonIDV1TrackVector_ff6b6a59_out_OutputTracks"  [minlen=0, style=invis];
}

"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1d9541b1_out_Output" -> "fromV3TrackWithMuonIDV1TrackVector/fromV3TrackWithMuonIDV1TrackVector_ff6b6a59_in_InputTracks";
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_2bd09f7a_out_Output" -> "LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex_5d9c3a9d_in_InputComposites";
subgraph "cluster_CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_2bd09f7a" {
bgcolor=aliceblue;
label="";
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_2bd09f7a" [label=<<B>CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_2bd09f7a</B><BR/>AssumedMass = mu+<BR/>CombinationCut = ( ( MAXSDOCA &lt; 0.2 ) &amp; ( MAXSDOCACHI2 &lt; 25.0 ) )<BR/>VertexCut = ( ( ( VALUE_OR(Value=nan) @ _CHI2DOF ) &lt; 25.0 ) &amp; ( MASS &gt; 2700.0 ) )>, shape=plaintext];
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_2bd09f7a_in_InputUniqueIDGenerator" [fillcolor=deepskyblue1, label=InputUniqueIDGenerator, style=filled];
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_2bd09f7a" -> "CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_2bd09f7a_in_InputUniqueIDGenerator"  [minlen=0, style=invis];
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_2bd09f7a_in_InputTracks" [fillcolor=deepskyblue1, label=InputTracks, style=filled];
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_2bd09f7a" -> "CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_2bd09f7a_in_InputTracks"  [minlen=0, style=invis];
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_2bd09f7a_in_CombinationCut_PyConfDataDependencies" [fillcolor=deepskyblue1, label=CombinationCut_PyConfDataDependencies, style=filled];
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_2bd09f7a" -> "CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_2bd09f7a_in_CombinationCut_PyConfDataDependencies"  [minlen=0, style=invis];
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_2bd09f7a_in_VertexCut_PyConfDataDependencies" [fillcolor=deepskyblue1, label=VertexCut_PyConfDataDependencies, style=filled];
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_2bd09f7a" -> "CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_2bd09f7a_in_VertexCut_PyConfDataDependencies"  [minlen=0, style=invis];
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_2bd09f7a_out_Output" [fillcolor=coral1, label=Output, style=filled];
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_2bd09f7a" -> "CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_2bd09f7a_out_Output"  [minlen=0, style=invis];
}

"UniqueIDGeneratorAlg/UniqueIDGeneratorAlg_26e527e9_out_Output" -> "CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_2bd09f7a_in_InputUniqueIDGenerator";
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1d9541b1_out_Output" -> "CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_2bd09f7a_in_InputTracks";
"LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex_fb2b99ce_out_OutputVertices" -> "SelReportsMaker/SelReportsMaker_98f655d1_in_Inputs";
subgraph "cluster_LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex_fb2b99ce" {
bgcolor=aliceblue;
label="";
"LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex_fb2b99ce" [label=<<B>LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex_fb2b99ce</B><BR/>defaults-only>, shape=plaintext];
"LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex_fb2b99ce_in_TracksInVertices" [fillcolor=deepskyblue1, label=TracksInVertices, style=filled];
"LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex_fb2b99ce" -> "LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex_fb2b99ce_in_TracksInVertices"  [minlen=0, style=invis];
"LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex_fb2b99ce_in_ConvertedTracks" [fillcolor=deepskyblue1, label=ConvertedTracks, style=filled];
"LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex_fb2b99ce" -> "LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex_fb2b99ce_in_ConvertedTracks"  [minlen=0, style=invis];
"LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex_fb2b99ce_in_InputComposites" [fillcolor=deepskyblue1, label=InputComposites, style=filled];
"LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex_fb2b99ce" -> "LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex_fb2b99ce_in_InputComposites"  [minlen=0, style=invis];
"LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex_fb2b99ce_out_OutputVertices" [fillcolor=coral1, label=OutputVertices, style=filled];
"LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex_fb2b99ce" -> "LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex_fb2b99ce_out_OutputVertices"  [minlen=0, style=invis];
}

"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1c05ae75_out_Output" -> "LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex_fb2b99ce_in_TracksInVertices";
subgraph "cluster_PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1c05ae75" {
bgcolor=aliceblue;
label="";
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1c05ae75" [label=<<B>PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1c05ae75</B><BR/>Cut = FILTER(Functor=( ISMUON &amp; ( ( MAGNITUDE @ THREEMOM[...] ( ( VALUE_OR(Value=nan) @ _CHI2DOF ) &lt; 100.0 ) ))>, shape=plaintext];
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1c05ae75_in_Input" [fillcolor=deepskyblue1, label=Input, style=filled];
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1c05ae75" -> "PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1c05ae75_in_Input"  [minlen=0, style=invis];
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1c05ae75_in_Cut_PyConfDataDependencies" [fillcolor=deepskyblue1, label=Cut_PyConfDataDependencies, style=filled];
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1c05ae75" -> "PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1c05ae75_in_Cut_PyConfDataDependencies"  [minlen=0, style=invis];
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1c05ae75_out_OutputStorage" [fillcolor=coral1, label=OutputStorage, style=filled];
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1c05ae75" -> "PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1c05ae75_out_OutputStorage"  [minlen=0, style=invis];
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1c05ae75_out_Output" [fillcolor=coral1, label=Output, style=filled];
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1c05ae75" -> "PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1c05ae75_out_Output"  [minlen=0, style=invis];
}

"MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89_out_Output" -> "PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1c05ae75_in_Input";
"TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_out_OutputVertices" -> "PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1c05ae75_in_Cut_PyConfDataDependencies";
subgraph "cluster_TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c" {
bgcolor=aliceblue;
label="";
"TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c" [label=<<B>TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c</B><BR/>MinZ = -600.0>, shape=plaintext];
"TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_in_TracksLocation" [fillcolor=deepskyblue1, label=TracksLocation, style=filled];
"TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c" -> "TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_in_TracksLocation"  [minlen=0, style=invis];
"TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_in_TracksBackwardLocation" [fillcolor=deepskyblue1, label=TracksBackwardLocation, style=filled];
"TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c" -> "TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_in_TracksBackwardLocation"  [minlen=0, style=invis];
"TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_out_OutputVertices" [fillcolor=coral1, label=OutputVertices, style=filled];
"TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c" -> "TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_out_OutputVertices"  [minlen=0, style=invis];
}

"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksLocation" -> "TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_in_TracksLocation";
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksBackwardLocation" -> "TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_in_TracksBackwardLocation";
"fromV3TrackWithMuonIDV1TrackVector/fromV3TrackWithMuonIDV1TrackVector_d3513f5e_out_OutputTracks" -> "LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex_fb2b99ce_in_ConvertedTracks";
subgraph "cluster_fromV3TrackWithMuonIDV1TrackVector/fromV3TrackWithMuonIDV1TrackVector_d3513f5e" {
bgcolor=aliceblue;
label="";
"fromV3TrackWithMuonIDV1TrackVector/fromV3TrackWithMuonIDV1TrackVector_d3513f5e" [label=<<B>fromV3TrackWithMuonIDV1TrackVector/fromV3TrackWithMuonIDV1TrackVector_d3513f5e</B><BR/>defaults-only>, shape=plaintext];
"fromV3TrackWithMuonIDV1TrackVector/fromV3TrackWithMuonIDV1TrackVector_d3513f5e_in_InputTracks" [fillcolor=deepskyblue1, label=InputTracks, style=filled];
"fromV3TrackWithMuonIDV1TrackVector/fromV3TrackWithMuonIDV1TrackVector_d3513f5e" -> "fromV3TrackWithMuonIDV1TrackVector/fromV3TrackWithMuonIDV1TrackVector_d3513f5e_in_InputTracks"  [minlen=0, style=invis];
"fromV3TrackWithMuonIDV1TrackVector/fromV3TrackWithMuonIDV1TrackVector_d3513f5e_out_OutputTracks" [fillcolor=coral1, label=OutputTracks, style=filled];
"fromV3TrackWithMuonIDV1TrackVector/fromV3TrackWithMuonIDV1TrackVector_d3513f5e" -> "fromV3TrackWithMuonIDV1TrackVector/fromV3TrackWithMuonIDV1TrackVector_d3513f5e_out_OutputTracks"  [minlen=0, style=invis];
}

"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1c05ae75_out_Output" -> "fromV3TrackWithMuonIDV1TrackVector/fromV3TrackWithMuonIDV1TrackVector_d3513f5e_in_InputTracks";
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_385ff72d_out_Output" -> "LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex_fb2b99ce_in_InputComposites";
subgraph "cluster_CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_385ff72d" {
bgcolor=aliceblue;
label="";
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_385ff72d" [label=<<B>CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_385ff72d</B><BR/>AssumedMass = mu+<BR/>CombinationCut = ( ( MAXSDOCA &lt; 0.2 ) &amp; ( MAXSDOCACHI2 &lt; 25.0 ) )<BR/>VertexCut = ( ( ( VALUE_OR(Value=nan) @ _CHI2DOF ) &lt; 25.0 ) &amp; ( MASS &gt; 0.0 ) )>, shape=plaintext];
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_385ff72d_in_InputUniqueIDGenerator" [fillcolor=deepskyblue1, label=InputUniqueIDGenerator, style=filled];
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_385ff72d" -> "CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_385ff72d_in_InputUniqueIDGenerator"  [minlen=0, style=invis];
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_385ff72d_in_InputTracks" [fillcolor=deepskyblue1, label=InputTracks, style=filled];
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_385ff72d" -> "CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_385ff72d_in_InputTracks"  [minlen=0, style=invis];
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_385ff72d_in_CombinationCut_PyConfDataDependencies" [fillcolor=deepskyblue1, label=CombinationCut_PyConfDataDependencies, style=filled];
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_385ff72d" -> "CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_385ff72d_in_CombinationCut_PyConfDataDependencies"  [minlen=0, style=invis];
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_385ff72d_in_VertexCut_PyConfDataDependencies" [fillcolor=deepskyblue1, label=VertexCut_PyConfDataDependencies, style=filled];
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_385ff72d" -> "CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_385ff72d_in_VertexCut_PyConfDataDependencies"  [minlen=0, style=invis];
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_385ff72d_out_Output" [fillcolor=coral1, label=Output, style=filled];
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_385ff72d" -> "CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_385ff72d_out_Output"  [minlen=0, style=invis];
}

"UniqueIDGeneratorAlg/UniqueIDGeneratorAlg_26e527e9_out_Output" -> "CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_385ff72d_in_InputUniqueIDGenerator";
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1c05ae75_out_Output" -> "CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_385ff72d_in_InputTracks";
"LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex_3bb79c2c_out_OutputVertices" -> "SelReportsMaker/SelReportsMaker_98f655d1_in_Inputs";
subgraph "cluster_LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex_3bb79c2c" {
bgcolor=aliceblue;
label="";
"LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex_3bb79c2c" [label=<<B>LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex_3bb79c2c</B><BR/>defaults-only>, shape=plaintext];
"LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex_3bb79c2c_in_TracksInVertices" [fillcolor=deepskyblue1, label=TracksInVertices, style=filled];
"LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex_3bb79c2c" -> "LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex_3bb79c2c_in_TracksInVertices"  [minlen=0, style=invis];
"LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex_3bb79c2c_in_ConvertedTracks" [fillcolor=deepskyblue1, label=ConvertedTracks, style=filled];
"LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex_3bb79c2c" -> "LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex_3bb79c2c_in_ConvertedTracks"  [minlen=0, style=invis];
"LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex_3bb79c2c_in_InputComposites" [fillcolor=deepskyblue1, label=InputComposites, style=filled];
"LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex_3bb79c2c" -> "LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex_3bb79c2c_in_InputComposites"  [minlen=0, style=invis];
"LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex_3bb79c2c_out_OutputVertices" [fillcolor=coral1, label=OutputVertices, style=filled];
"LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex_3bb79c2c" -> "LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex_3bb79c2c_out_OutputVertices"  [minlen=0, style=invis];
}

"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_621940e0_out_Output" -> "LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex_3bb79c2c_in_TracksInVertices";
subgraph "cluster_PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_621940e0" {
bgcolor=aliceblue;
label="";
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_621940e0" [label=<<B>PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_621940e0</B><BR/>Cut = FILTER(Functor=( ISMUON &amp; ( ( MAGNITUDE @ THREEMOM[...] ( ( VALUE_OR(Value=nan) @ _CHI2DOF ) &lt; 100.0 ) ))>, shape=plaintext];
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_621940e0_in_Input" [fillcolor=deepskyblue1, label=Input, style=filled];
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_621940e0" -> "PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_621940e0_in_Input"  [minlen=0, style=invis];
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_621940e0_in_Cut_PyConfDataDependencies" [fillcolor=deepskyblue1, label=Cut_PyConfDataDependencies, style=filled];
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_621940e0" -> "PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_621940e0_in_Cut_PyConfDataDependencies"  [minlen=0, style=invis];
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_621940e0_out_OutputStorage" [fillcolor=coral1, label=OutputStorage, style=filled];
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_621940e0" -> "PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_621940e0_out_OutputStorage"  [minlen=0, style=invis];
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_621940e0_out_Output" [fillcolor=coral1, label=Output, style=filled];
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_621940e0" -> "PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_621940e0_out_Output"  [minlen=0, style=invis];
}

"MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_f17f3a7f_out_Output" -> "PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_621940e0_in_Input";
subgraph "cluster_MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_f17f3a7f" {
bgcolor=aliceblue;
label="";
"MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_f17f3a7f" [label=<<B>MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_f17f3a7f</B><BR/>defaults-only>, shape=plaintext];
"MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_f17f3a7f_in_Input1" [fillcolor=deepskyblue1, label=Input1, style=filled];
"MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_f17f3a7f" -> "MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_f17f3a7f_in_Input1"  [minlen=0, style=invis];
"MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_f17f3a7f_in_Input2" [fillcolor=deepskyblue1, label=Input2, style=filled];
"MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_f17f3a7f" -> "MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_f17f3a7f_in_Input2"  [minlen=0, style=invis];
"MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_f17f3a7f_out_Output" [fillcolor=coral1, label=Output, style=filled];
"MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_f17f3a7f" -> "MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_f17f3a7f_out_Output"  [minlen=0, style=invis];
}

"VeloKalman/VeloKalman_24423762_out_OutputTracksLocation" -> "MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_f17f3a7f_in_Input1";
subgraph "cluster_VeloKalman/VeloKalman_24423762" {
bgcolor=aliceblue;
label="";
"VeloKalman/VeloKalman_24423762" [label=<<B>VeloKalman/VeloKalman_24423762</B><BR/>defaults-only>, shape=plaintext];
"VeloKalman/VeloKalman_24423762_in_HitsLocation" [fillcolor=deepskyblue1, label=HitsLocation, style=filled];
"VeloKalman/VeloKalman_24423762" -> "VeloKalman/VeloKalman_24423762_in_HitsLocation"  [minlen=0, style=invis];
"VeloKalman/VeloKalman_24423762_in_TracksVPLocation" [fillcolor=deepskyblue1, label=TracksVPLocation, style=filled];
"VeloKalman/VeloKalman_24423762" -> "VeloKalman/VeloKalman_24423762_in_TracksVPLocation"  [minlen=0, style=invis];
"VeloKalman/VeloKalman_24423762_in_TracksFTLocation" [fillcolor=deepskyblue1, label=TracksFTLocation, style=filled];
"VeloKalman/VeloKalman_24423762" -> "VeloKalman/VeloKalman_24423762_in_TracksFTLocation"  [minlen=0, style=invis];
"VeloKalman/VeloKalman_24423762_in_UniqueIDGenerator" [fillcolor=deepskyblue1, label=UniqueIDGenerator, style=filled];
"VeloKalman/VeloKalman_24423762" -> "VeloKalman/VeloKalman_24423762_in_UniqueIDGenerator"  [minlen=0, style=invis];
"VeloKalman/VeloKalman_24423762_out_OutputTracksLocation" [fillcolor=coral1, label=OutputTracksLocation, style=filled];
"VeloKalman/VeloKalman_24423762" -> "VeloKalman/VeloKalman_24423762_out_OutputTracksLocation"  [minlen=0, style=invis];
}

"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_HitsLocation" -> "VeloKalman/VeloKalman_24423762_in_HitsLocation";
"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksLocation" -> "VeloKalman/VeloKalman_24423762_in_TracksVPLocation";
"SciFiTrackForwarding/SciFiTrackForwarding_ad21e450_out_Output" -> "VeloKalman/VeloKalman_24423762_in_TracksFTLocation";
subgraph "cluster_SciFiTrackForwarding/SciFiTrackForwarding_ad21e450" {
bgcolor=aliceblue;
label="";
"SciFiTrackForwarding/SciFiTrackForwarding_ad21e450" [label=<<B>SciFiTrackForwarding/SciFiTrackForwarding_ad21e450</B><BR/>MinPt = 80.0>, shape=plaintext];
"SciFiTrackForwarding/SciFiTrackForwarding_ad21e450_in_HitsLocation" [fillcolor=deepskyblue1, label=HitsLocation, style=filled];
"SciFiTrackForwarding/SciFiTrackForwarding_ad21e450" -> "SciFiTrackForwarding/SciFiTrackForwarding_ad21e450_in_HitsLocation"  [minlen=0, style=invis];
"SciFiTrackForwarding/SciFiTrackForwarding_ad21e450_in_InputTracks" [fillcolor=deepskyblue1, label=InputTracks, style=filled];
"SciFiTrackForwarding/SciFiTrackForwarding_ad21e450" -> "SciFiTrackForwarding/SciFiTrackForwarding_ad21e450_in_InputTracks"  [minlen=0, style=invis];
"SciFiTrackForwarding/SciFiTrackForwarding_ad21e450_out_Output" [fillcolor=coral1, label=Output, style=filled];
"SciFiTrackForwarding/SciFiTrackForwarding_ad21e450" -> "SciFiTrackForwarding/SciFiTrackForwarding_ad21e450_out_Output"  [minlen=0, style=invis];
}

"SciFiTrackForwardingStoreHit/SciFiTrackForwardingStoreHit_6ce67d19_out_Output" -> "SciFiTrackForwarding/SciFiTrackForwarding_ad21e450_in_HitsLocation";
"MuonMatchVeloUTSoA/MuonMatchVeloUTSoA_42038f4f_out_OutputTracks" -> "SciFiTrackForwarding/SciFiTrackForwarding_ad21e450_in_InputTracks";
subgraph "cluster_MuonMatchVeloUTSoA/MuonMatchVeloUTSoA_42038f4f" {
bgcolor=aliceblue;
label="";
"MuonMatchVeloUTSoA/MuonMatchVeloUTSoA_42038f4f" [label=<<B>MuonMatchVeloUTSoA/MuonMatchVeloUTSoA_42038f4f</B><BR/>defaults-only>, shape=plaintext];
"MuonMatchVeloUTSoA/MuonMatchVeloUTSoA_42038f4f_in_InputTracks" [fillcolor=deepskyblue1, label=InputTracks, style=filled];
"MuonMatchVeloUTSoA/MuonMatchVeloUTSoA_42038f4f" -> "MuonMatchVeloUTSoA/MuonMatchVeloUTSoA_42038f4f_in_InputTracks"  [minlen=0, style=invis];
"MuonMatchVeloUTSoA/MuonMatchVeloUTSoA_42038f4f_in_InputMuonHits" [fillcolor=deepskyblue1, label=InputMuonHits, style=filled];
"MuonMatchVeloUTSoA/MuonMatchVeloUTSoA_42038f4f" -> "MuonMatchVeloUTSoA/MuonMatchVeloUTSoA_42038f4f_in_InputMuonHits"  [minlen=0, style=invis];
"MuonMatchVeloUTSoA/MuonMatchVeloUTSoA_42038f4f_out_OutputTracks" [fillcolor=coral1, label=OutputTracks, style=filled];
"MuonMatchVeloUTSoA/MuonMatchVeloUTSoA_42038f4f" -> "MuonMatchVeloUTSoA/MuonMatchVeloUTSoA_42038f4f_out_OutputTracks"  [minlen=0, style=invis];
}

"PrVeloUT/PrVeloUT_85dc03d9_out_OutputTracksName" -> "MuonMatchVeloUTSoA/MuonMatchVeloUTSoA_42038f4f_in_InputTracks";
subgraph "cluster_PrVeloUT/PrVeloUT_85dc03d9" {
bgcolor=aliceblue;
label="";
"PrVeloUT/PrVeloUT_85dc03d9" [label=<<B>PrVeloUT/PrVeloUT_85dc03d9</B><BR/>MinPT = 80.0<BR/>MinPTFinal = 80.0>, shape=plaintext];
"PrVeloUT/PrVeloUT_85dc03d9_in_InputTracksName" [fillcolor=deepskyblue1, label=InputTracksName, style=filled];
"PrVeloUT/PrVeloUT_85dc03d9" -> "PrVeloUT/PrVeloUT_85dc03d9_in_InputTracksName"  [minlen=0, style=invis];
"PrVeloUT/PrVeloUT_85dc03d9_in_UTHits" [fillcolor=deepskyblue1, label=UTHits, style=filled];
"PrVeloUT/PrVeloUT_85dc03d9" -> "PrVeloUT/PrVeloUT_85dc03d9_in_UTHits"  [minlen=0, style=invis];
"PrVeloUT/PrVeloUT_85dc03d9_out_OutputTracksName" [fillcolor=coral1, label=OutputTracksName, style=filled];
"PrVeloUT/PrVeloUT_85dc03d9" -> "PrVeloUT/PrVeloUT_85dc03d9_out_OutputTracksName"  [minlen=0, style=invis];
}

"PrFilterIPSoA/PrFilterIPSoA_bae17090_out_Output" -> "PrVeloUT/PrVeloUT_85dc03d9_in_InputTracksName";
subgraph "cluster_PrFilterIPSoA/PrFilterIPSoA_bae17090" {
bgcolor=aliceblue;
label="";
"PrFilterIPSoA/PrFilterIPSoA_bae17090" [label=<<B>PrFilterIPSoA/PrFilterIPSoA_bae17090</B><BR/>IPcut = 0.1>, shape=plaintext];
"PrFilterIPSoA/PrFilterIPSoA_bae17090_in_Input" [fillcolor=deepskyblue1, label=Input, style=filled];
"PrFilterIPSoA/PrFilterIPSoA_bae17090" -> "PrFilterIPSoA/PrFilterIPSoA_bae17090_in_Input"  [minlen=0, style=invis];
"PrFilterIPSoA/PrFilterIPSoA_bae17090_in_InputVertices" [fillcolor=deepskyblue1, label=InputVertices, style=filled];
"PrFilterIPSoA/PrFilterIPSoA_bae17090" -> "PrFilterIPSoA/PrFilterIPSoA_bae17090_in_InputVertices"  [minlen=0, style=invis];
"PrFilterIPSoA/PrFilterIPSoA_bae17090_out_Output" [fillcolor=coral1, label=Output, style=filled];
"PrFilterIPSoA/PrFilterIPSoA_bae17090" -> "PrFilterIPSoA/PrFilterIPSoA_bae17090_out_Output"  [minlen=0, style=invis];
}

"VeloClusterTrackingSIMD/VeloClusterTrackingSIMD_87c18651_out_TracksLocation" -> "PrFilterIPSoA/PrFilterIPSoA_bae17090_in_Input";
"TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_out_OutputVertices" -> "PrFilterIPSoA/PrFilterIPSoA_bae17090_in_InputVertices";
"PrStorePrUTHits/PrStorePrUTHits_df75b912_out_UTHitsLocation" -> "PrVeloUT/PrVeloUT_85dc03d9_in_UTHits";
"MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab_out_HitContainer" -> "MuonMatchVeloUTSoA/MuonMatchVeloUTSoA_42038f4f_in_InputMuonHits";
"UniqueIDGeneratorAlg/UniqueIDGeneratorAlg_26e527e9_out_Output" -> "VeloKalman/VeloKalman_24423762_in_UniqueIDGenerator";
"MuonIDHlt1Alg/MuonIDHlt1Alg_9d0a1a6c_out_OutputMuonPID" -> "MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_f17f3a7f_in_Input2";
subgraph "cluster_MuonIDHlt1Alg/MuonIDHlt1Alg_9d0a1a6c" {
bgcolor=aliceblue;
label="";
"MuonIDHlt1Alg/MuonIDHlt1Alg_9d0a1a6c" [label=<<B>MuonIDHlt1Alg/MuonIDHlt1Alg_9d0a1a6c</B><BR/>runMVA = False>, shape=plaintext];
"MuonIDHlt1Alg/MuonIDHlt1Alg_9d0a1a6c_in_InputTracks" [fillcolor=deepskyblue1, label=InputTracks, style=filled];
"MuonIDHlt1Alg/MuonIDHlt1Alg_9d0a1a6c" -> "MuonIDHlt1Alg/MuonIDHlt1Alg_9d0a1a6c_in_InputTracks"  [minlen=0, style=invis];
"MuonIDHlt1Alg/MuonIDHlt1Alg_9d0a1a6c_in_InputMuonHits" [fillcolor=deepskyblue1, label=InputMuonHits, style=filled];
"MuonIDHlt1Alg/MuonIDHlt1Alg_9d0a1a6c" -> "MuonIDHlt1Alg/MuonIDHlt1Alg_9d0a1a6c_in_InputMuonHits"  [minlen=0, style=invis];
"MuonIDHlt1Alg/MuonIDHlt1Alg_9d0a1a6c_out_OutputMuonPID" [fillcolor=coral1, label=OutputMuonPID, style=filled];
"MuonIDHlt1Alg/MuonIDHlt1Alg_9d0a1a6c" -> "MuonIDHlt1Alg/MuonIDHlt1Alg_9d0a1a6c_out_OutputMuonPID"  [minlen=0, style=invis];
}

"SciFiTrackForwarding/SciFiTrackForwarding_ad21e450_out_Output" -> "MuonIDHlt1Alg/MuonIDHlt1Alg_9d0a1a6c_in_InputTracks";
"MuonRawInUpgradeToHits/MuonRawInUpgradeToHits_5a53a5ab_out_HitContainer" -> "MuonIDHlt1Alg/MuonIDHlt1Alg_9d0a1a6c_in_InputMuonHits";
"TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_out_OutputVertices" -> "PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_621940e0_in_Cut_PyConfDataDependencies";
"fromV3TrackWithMuonIDV1TrackVector/fromV3TrackWithMuonIDV1TrackVector_966bd0da_out_OutputTracks" -> "LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex_3bb79c2c_in_ConvertedTracks";
subgraph "cluster_fromV3TrackWithMuonIDV1TrackVector/fromV3TrackWithMuonIDV1TrackVector_966bd0da" {
bgcolor=aliceblue;
label="";
"fromV3TrackWithMuonIDV1TrackVector/fromV3TrackWithMuonIDV1TrackVector_966bd0da" [label=<<B>fromV3TrackWithMuonIDV1TrackVector/fromV3TrackWithMuonIDV1TrackVector_966bd0da</B><BR/>defaults-only>, shape=plaintext];
"fromV3TrackWithMuonIDV1TrackVector/fromV3TrackWithMuonIDV1TrackVector_966bd0da_in_InputTracks" [fillcolor=deepskyblue1, label=InputTracks, style=filled];
"fromV3TrackWithMuonIDV1TrackVector/fromV3TrackWithMuonIDV1TrackVector_966bd0da" -> "fromV3TrackWithMuonIDV1TrackVector/fromV3TrackWithMuonIDV1TrackVector_966bd0da_in_InputTracks"  [minlen=0, style=invis];
"fromV3TrackWithMuonIDV1TrackVector/fromV3TrackWithMuonIDV1TrackVector_966bd0da_out_OutputTracks" [fillcolor=coral1, label=OutputTracks, style=filled];
"fromV3TrackWithMuonIDV1TrackVector/fromV3TrackWithMuonIDV1TrackVector_966bd0da" -> "fromV3TrackWithMuonIDV1TrackVector/fromV3TrackWithMuonIDV1TrackVector_966bd0da_out_OutputTracks"  [minlen=0, style=invis];
}

"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_621940e0_out_Output" -> "fromV3TrackWithMuonIDV1TrackVector/fromV3TrackWithMuonIDV1TrackVector_966bd0da_in_InputTracks";
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_23e81e73_out_Output" -> "LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex_3bb79c2c_in_InputComposites";
subgraph "cluster_CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_23e81e73" {
bgcolor=aliceblue;
label="";
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_23e81e73" [label=<<B>CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_23e81e73</B><BR/>AssumedMass = mu+<BR/>CombinationCut = ( ( MAXSDOCA &lt; 0.2 ) &amp; ( MAXSDOCACHI2 &lt; 25.0 ) )<BR/>VertexCut = ( ( ( VALUE_OR(Value=nan) @ _CHI2DOF ) &lt; 25.0 ) &amp; ( MASS &gt; 220.0 ) )>, shape=plaintext];
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_23e81e73_in_InputUniqueIDGenerator" [fillcolor=deepskyblue1, label=InputUniqueIDGenerator, style=filled];
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_23e81e73" -> "CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_23e81e73_in_InputUniqueIDGenerator"  [minlen=0, style=invis];
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_23e81e73_in_InputTracks" [fillcolor=deepskyblue1, label=InputTracks, style=filled];
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_23e81e73" -> "CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_23e81e73_in_InputTracks"  [minlen=0, style=invis];
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_23e81e73_in_CombinationCut_PyConfDataDependencies" [fillcolor=deepskyblue1, label=CombinationCut_PyConfDataDependencies, style=filled];
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_23e81e73" -> "CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_23e81e73_in_CombinationCut_PyConfDataDependencies"  [minlen=0, style=invis];
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_23e81e73_in_VertexCut_PyConfDataDependencies" [fillcolor=deepskyblue1, label=VertexCut_PyConfDataDependencies, style=filled];
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_23e81e73" -> "CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_23e81e73_in_VertexCut_PyConfDataDependencies"  [minlen=0, style=invis];
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_23e81e73_out_Output" [fillcolor=coral1, label=Output, style=filled];
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_23e81e73" -> "CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_23e81e73_out_Output"  [minlen=0, style=invis];
}

"UniqueIDGeneratorAlg/UniqueIDGeneratorAlg_26e527e9_out_Output" -> "CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_23e81e73_in_InputUniqueIDGenerator";
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_621940e0_out_Output" -> "CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_23e81e73_in_InputTracks";
"fromV3TrackWithMuonIDV1TrackVector/fromV3TrackWithMuonIDV1TrackVector_17daa9b9_out_OutputTracks" -> "SelReportsMaker/SelReportsMaker_98f655d1_in_Inputs";
subgraph "cluster_fromV3TrackWithMuonIDV1TrackVector/fromV3TrackWithMuonIDV1TrackVector_17daa9b9" {
bgcolor=aliceblue;
label="";
"fromV3TrackWithMuonIDV1TrackVector/fromV3TrackWithMuonIDV1TrackVector_17daa9b9" [label=<<B>fromV3TrackWithMuonIDV1TrackVector/fromV3TrackWithMuonIDV1TrackVector_17daa9b9</B><BR/>defaults-only>, shape=plaintext];
"fromV3TrackWithMuonIDV1TrackVector/fromV3TrackWithMuonIDV1TrackVector_17daa9b9_in_InputTracks" [fillcolor=deepskyblue1, label=InputTracks, style=filled];
"fromV3TrackWithMuonIDV1TrackVector/fromV3TrackWithMuonIDV1TrackVector_17daa9b9" -> "fromV3TrackWithMuonIDV1TrackVector/fromV3TrackWithMuonIDV1TrackVector_17daa9b9_in_InputTracks"  [minlen=0, style=invis];
"fromV3TrackWithMuonIDV1TrackVector/fromV3TrackWithMuonIDV1TrackVector_17daa9b9_out_OutputTracks" [fillcolor=coral1, label=OutputTracks, style=filled];
"fromV3TrackWithMuonIDV1TrackVector/fromV3TrackWithMuonIDV1TrackVector_17daa9b9" -> "fromV3TrackWithMuonIDV1TrackVector/fromV3TrackWithMuonIDV1TrackVector_17daa9b9_out_OutputTracks"  [minlen=0, style=invis];
}

"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_300f2dbf_out_Output" -> "fromV3TrackWithMuonIDV1TrackVector/fromV3TrackWithMuonIDV1TrackVector_17daa9b9_in_InputTracks";
subgraph "cluster_PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_300f2dbf" {
bgcolor=aliceblue;
label="";
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_300f2dbf" [label=<<B>PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_300f2dbf</B><BR/>Cut = FILTER(Functor=( ISMUON &amp; ( ( RHO_COORDINATE @ THR[...] ) &amp; ( ( MAGNITUDE @ THREEMOMENTUM ) &gt; 6000.0 ) ))>, shape=plaintext];
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_300f2dbf_in_Input" [fillcolor=deepskyblue1, label=Input, style=filled];
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_300f2dbf" -> "PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_300f2dbf_in_Input"  [minlen=0, style=invis];
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_300f2dbf_in_Cut_PyConfDataDependencies" [fillcolor=deepskyblue1, label=Cut_PyConfDataDependencies, style=filled];
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_300f2dbf" -> "PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_300f2dbf_in_Cut_PyConfDataDependencies"  [minlen=0, style=invis];
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_300f2dbf_out_OutputStorage" [fillcolor=coral1, label=OutputStorage, style=filled];
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_300f2dbf" -> "PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_300f2dbf_out_OutputStorage"  [minlen=0, style=invis];
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_300f2dbf_out_Output" [fillcolor=coral1, label=Output, style=filled];
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_300f2dbf" -> "PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_300f2dbf_out_Output"  [minlen=0, style=invis];
}

"MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89_out_Output" -> "PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_300f2dbf_in_Input";
"fromV3TrackWithPVsV1TrackVector/fromV3TrackWithPVsV1TrackVector_30798de1_out_OutputTracks" -> "SelReportsMaker/SelReportsMaker_98f655d1_in_Inputs";
subgraph "cluster_fromV3TrackWithPVsV1TrackVector/fromV3TrackWithPVsV1TrackVector_30798de1" {
bgcolor=aliceblue;
label="";
"fromV3TrackWithPVsV1TrackVector/fromV3TrackWithPVsV1TrackVector_30798de1" [label=<<B>fromV3TrackWithPVsV1TrackVector/fromV3TrackWithPVsV1TrackVector_30798de1</B><BR/>defaults-only>, shape=plaintext];
"fromV3TrackWithPVsV1TrackVector/fromV3TrackWithPVsV1TrackVector_30798de1_in_InputTracks" [fillcolor=deepskyblue1, label=InputTracks, style=filled];
"fromV3TrackWithPVsV1TrackVector/fromV3TrackWithPVsV1TrackVector_30798de1" -> "fromV3TrackWithPVsV1TrackVector/fromV3TrackWithPVsV1TrackVector_30798de1_in_InputTracks"  [minlen=0, style=invis];
"fromV3TrackWithPVsV1TrackVector/fromV3TrackWithPVsV1TrackVector_30798de1_out_OutputTracks" [fillcolor=coral1, label=OutputTracks, style=filled];
"fromV3TrackWithPVsV1TrackVector/fromV3TrackWithPVsV1TrackVector_30798de1" -> "fromV3TrackWithPVsV1TrackVector/fromV3TrackWithPVsV1TrackVector_30798de1_out_OutputTracks"  [minlen=0, style=invis];
}

"PrFilter__PrFittedForwardTracksWithPVs/PrFilter__PrFittedForwardTracksWithPVs_c4273fb1_out_Output" -> "fromV3TrackWithPVsV1TrackVector/fromV3TrackWithPVsV1TrackVector_30798de1_in_InputTracks";
subgraph "cluster_PrFilter__PrFittedForwardTracksWithPVs/PrFilter__PrFittedForwardTracksWithPVs_c4273fb1" {
bgcolor=aliceblue;
label="";
"PrFilter__PrFittedForwardTracksWithPVs/PrFilter__PrFittedForwardTracksWithPVs_c4273fb1" [label=<<B>PrFilter__PrFittedForwardTracksWithPVs/PrFilter__PrFittedForwardTracksWithPVs_c4273fb1</B><BR/>Cut = FILTER(Functor=( ( ( VALUE_OR(Value=nan) @ _CHI2DO[...]EEMOMENTUM ) ) ) ) + 2.0014800002101243 ) ) ) ) ))>, shape=plaintext];
"PrFilter__PrFittedForwardTracksWithPVs/PrFilter__PrFittedForwardTracksWithPVs_c4273fb1_in_Input" [fillcolor=deepskyblue1, label=Input, style=filled];
"PrFilter__PrFittedForwardTracksWithPVs/PrFilter__PrFittedForwardTracksWithPVs_c4273fb1" -> "PrFilter__PrFittedForwardTracksWithPVs/PrFilter__PrFittedForwardTracksWithPVs_c4273fb1_in_Input"  [minlen=0, style=invis];
"PrFilter__PrFittedForwardTracksWithPVs/PrFilter__PrFittedForwardTracksWithPVs_c4273fb1_in_Cut_PyConfDataDependencies" [fillcolor=deepskyblue1, label=Cut_PyConfDataDependencies, style=filled];
"PrFilter__PrFittedForwardTracksWithPVs/PrFilter__PrFittedForwardTracksWithPVs_c4273fb1" -> "PrFilter__PrFittedForwardTracksWithPVs/PrFilter__PrFittedForwardTracksWithPVs_c4273fb1_in_Cut_PyConfDataDependencies"  [minlen=0, style=invis];
"PrFilter__PrFittedForwardTracksWithPVs/PrFilter__PrFittedForwardTracksWithPVs_c4273fb1_out_OutputStorage" [fillcolor=coral1, label=OutputStorage, style=filled];
"PrFilter__PrFittedForwardTracksWithPVs/PrFilter__PrFittedForwardTracksWithPVs_c4273fb1" -> "PrFilter__PrFittedForwardTracksWithPVs/PrFilter__PrFittedForwardTracksWithPVs_c4273fb1_out_OutputStorage"  [minlen=0, style=invis];
"PrFilter__PrFittedForwardTracksWithPVs/PrFilter__PrFittedForwardTracksWithPVs_c4273fb1_out_Output" [fillcolor=coral1, label=Output, style=filled];
"PrFilter__PrFittedForwardTracksWithPVs/PrFilter__PrFittedForwardTracksWithPVs_c4273fb1" -> "PrFilter__PrFittedForwardTracksWithPVs/PrFilter__PrFittedForwardTracksWithPVs_c4273fb1_out_Output"  [minlen=0, style=invis];
}

"MakeZip__PrFittedForwardTracks__BestVertexRelations/MakeZip__PrFittedForwardTracks__BestVertexRelations_7f27b631_out_Output" -> "PrFilter__PrFittedForwardTracksWithPVs/PrFilter__PrFittedForwardTracksWithPVs_c4273fb1_in_Input";
subgraph "cluster_MakeZip__PrFittedForwardTracks__BestVertexRelations/MakeZip__PrFittedForwardTracks__BestVertexRelations_7f27b631" {
bgcolor=aliceblue;
label="";
"MakeZip__PrFittedForwardTracks__BestVertexRelations/MakeZip__PrFittedForwardTracks__BestVertexRelations_7f27b631" [label=<<B>MakeZip__PrFittedForwardTracks__BestVertexRelations/MakeZip__PrFittedForwardTracks__BestVertexRelations_7f27b631</B><BR/>defaults-only>, shape=plaintext];
"MakeZip__PrFittedForwardTracks__BestVertexRelations/MakeZip__PrFittedForwardTracks__BestVertexRelations_7f27b631_in_Input1" [fillcolor=deepskyblue1, label=Input1, style=filled];
"MakeZip__PrFittedForwardTracks__BestVertexRelations/MakeZip__PrFittedForwardTracks__BestVertexRelations_7f27b631" -> "MakeZip__PrFittedForwardTracks__BestVertexRelations/MakeZip__PrFittedForwardTracks__BestVertexRelations_7f27b631_in_Input1"  [minlen=0, style=invis];
"MakeZip__PrFittedForwardTracks__BestVertexRelations/MakeZip__PrFittedForwardTracks__BestVertexRelations_7f27b631_in_Input2" [fillcolor=deepskyblue1, label=Input2, style=filled];
"MakeZip__PrFittedForwardTracks__BestVertexRelations/MakeZip__PrFittedForwardTracks__BestVertexRelations_7f27b631" -> "MakeZip__PrFittedForwardTracks__BestVertexRelations/MakeZip__PrFittedForwardTracks__BestVertexRelations_7f27b631_in_Input2"  [minlen=0, style=invis];
"MakeZip__PrFittedForwardTracks__BestVertexRelations/MakeZip__PrFittedForwardTracks__BestVertexRelations_7f27b631_out_Output" [fillcolor=coral1, label=Output, style=filled];
"MakeZip__PrFittedForwardTracks__BestVertexRelations/MakeZip__PrFittedForwardTracks__BestVertexRelations_7f27b631" -> "MakeZip__PrFittedForwardTracks__BestVertexRelations/MakeZip__PrFittedForwardTracks__BestVertexRelations_7f27b631_out_Output"  [minlen=0, style=invis];
}

"VeloKalman/VeloKalman_bf73c006_out_OutputTracksLocation" -> "MakeZip__PrFittedForwardTracks__BestVertexRelations/MakeZip__PrFittedForwardTracks__BestVertexRelations_7f27b631_in_Input1";
"MakePVRelations__PrFittedForwardTracks/MakePVRelations__PrFittedForwardTracks_6a2c6809_out_Output" -> "MakeZip__PrFittedForwardTracks__BestVertexRelations/MakeZip__PrFittedForwardTracks__BestVertexRelations_7f27b631_in_Input2";
subgraph "cluster_MakePVRelations__PrFittedForwardTracks/MakePVRelations__PrFittedForwardTracks_6a2c6809" {
bgcolor=aliceblue;
label="";
"MakePVRelations__PrFittedForwardTracks/MakePVRelations__PrFittedForwardTracks_6a2c6809" [label=<<B>MakePVRelations__PrFittedForwardTracks/MakePVRelations__PrFittedForwardTracks_6a2c6809</B><BR/>defaults-only>, shape=plaintext];
"MakePVRelations__PrFittedForwardTracks/MakePVRelations__PrFittedForwardTracks_6a2c6809_in_Input" [fillcolor=deepskyblue1, label=Input, style=filled];
"MakePVRelations__PrFittedForwardTracks/MakePVRelations__PrFittedForwardTracks_6a2c6809" -> "MakePVRelations__PrFittedForwardTracks/MakePVRelations__PrFittedForwardTracks_6a2c6809_in_Input"  [minlen=0, style=invis];
"MakePVRelations__PrFittedForwardTracks/MakePVRelations__PrFittedForwardTracks_6a2c6809_in_InputVertices" [fillcolor=deepskyblue1, label=InputVertices, style=filled];
"MakePVRelations__PrFittedForwardTracks/MakePVRelations__PrFittedForwardTracks_6a2c6809" -> "MakePVRelations__PrFittedForwardTracks/MakePVRelations__PrFittedForwardTracks_6a2c6809_in_InputVertices"  [minlen=0, style=invis];
"MakePVRelations__PrFittedForwardTracks/MakePVRelations__PrFittedForwardTracks_6a2c6809_out_Output" [fillcolor=coral1, label=Output, style=filled];
"MakePVRelations__PrFittedForwardTracks/MakePVRelations__PrFittedForwardTracks_6a2c6809" -> "MakePVRelations__PrFittedForwardTracks/MakePVRelations__PrFittedForwardTracks_6a2c6809_out_Output"  [minlen=0, style=invis];
}

"VeloKalman/VeloKalman_bf73c006_out_OutputTracksLocation" -> "MakePVRelations__PrFittedForwardTracks/MakePVRelations__PrFittedForwardTracks_6a2c6809_in_Input";
"TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_out_OutputVertices" -> "MakePVRelations__PrFittedForwardTracks/MakePVRelations__PrFittedForwardTracks_6a2c6809_in_InputVertices";
"TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_out_OutputVertices" -> "PrFilter__PrFittedForwardTracksWithPVs/PrFilter__PrFittedForwardTracksWithPVs_c4273fb1_in_Cut_PyConfDataDependencies";
"fromV3TrackWithMuonIDV1TrackVector/fromV3TrackWithMuonIDV1TrackVector_1db586a9_out_OutputTracks" -> "SelReportsMaker/SelReportsMaker_98f655d1_in_Inputs";
subgraph "cluster_fromV3TrackWithMuonIDV1TrackVector/fromV3TrackWithMuonIDV1TrackVector_1db586a9" {
bgcolor=aliceblue;
label="";
"fromV3TrackWithMuonIDV1TrackVector/fromV3TrackWithMuonIDV1TrackVector_1db586a9" [label=<<B>fromV3TrackWithMuonIDV1TrackVector/fromV3TrackWithMuonIDV1TrackVector_1db586a9</B><BR/>defaults-only>, shape=plaintext];
"fromV3TrackWithMuonIDV1TrackVector/fromV3TrackWithMuonIDV1TrackVector_1db586a9_in_InputTracks" [fillcolor=deepskyblue1, label=InputTracks, style=filled];
"fromV3TrackWithMuonIDV1TrackVector/fromV3TrackWithMuonIDV1TrackVector_1db586a9" -> "fromV3TrackWithMuonIDV1TrackVector/fromV3TrackWithMuonIDV1TrackVector_1db586a9_in_InputTracks"  [minlen=0, style=invis];
"fromV3TrackWithMuonIDV1TrackVector/fromV3TrackWithMuonIDV1TrackVector_1db586a9_out_OutputTracks" [fillcolor=coral1, label=OutputTracks, style=filled];
"fromV3TrackWithMuonIDV1TrackVector/fromV3TrackWithMuonIDV1TrackVector_1db586a9" -> "fromV3TrackWithMuonIDV1TrackVector/fromV3TrackWithMuonIDV1TrackVector_1db586a9_out_OutputTracks"  [minlen=0, style=invis];
}

"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1fabecf8_out_Output" -> "fromV3TrackWithMuonIDV1TrackVector/fromV3TrackWithMuonIDV1TrackVector_1db586a9_in_InputTracks";
subgraph "cluster_PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1fabecf8" {
bgcolor=aliceblue;
label="";
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1fabecf8" [label=<<B>PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1fabecf8</B><BR/>Cut = FILTER(Functor=( ISMUON &amp; ( ( RHO_COORDINATE @ THR[...]EEMOMENTUM ) ) ) ) + 2.0014800002101243 ) ) ) ) ))>, shape=plaintext];
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1fabecf8_in_Input" [fillcolor=deepskyblue1, label=Input, style=filled];
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1fabecf8" -> "PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1fabecf8_in_Input"  [minlen=0, style=invis];
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1fabecf8_in_Cut_PyConfDataDependencies" [fillcolor=deepskyblue1, label=Cut_PyConfDataDependencies, style=filled];
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1fabecf8" -> "PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1fabecf8_in_Cut_PyConfDataDependencies"  [minlen=0, style=invis];
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1fabecf8_out_OutputStorage" [fillcolor=coral1, label=OutputStorage, style=filled];
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1fabecf8" -> "PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1fabecf8_out_OutputStorage"  [minlen=0, style=invis];
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1fabecf8_out_Output" [fillcolor=coral1, label=Output, style=filled];
"PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1fabecf8" -> "PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1fabecf8_out_Output"  [minlen=0, style=invis];
}

"MakeZip__BestTracks__MuonPIDs__v2/MakeZip__BestTracks__MuonPIDs__v2_d84e0f89_out_Output" -> "PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1fabecf8_in_Input";
"TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_out_OutputVertices" -> "PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1fabecf8_in_Cut_PyConfDataDependencies";
"LHCb__Converters__Composites__TracksWithPVsToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithPVsToVectorOfRecVertex_b247fde1_out_OutputVertices" -> "SelReportsMaker/SelReportsMaker_98f655d1_in_Inputs";
subgraph "cluster_LHCb__Converters__Composites__TracksWithPVsToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithPVsToVectorOfRecVertex_b247fde1" {
bgcolor=aliceblue;
label="";
"LHCb__Converters__Composites__TracksWithPVsToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithPVsToVectorOfRecVertex_b247fde1" [label=<<B>LHCb__Converters__Composites__TracksWithPVsToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithPVsToVectorOfRecVertex_b247fde1</B><BR/>defaults-only>, shape=plaintext];
"LHCb__Converters__Composites__TracksWithPVsToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithPVsToVectorOfRecVertex_b247fde1_in_TracksInVertices" [fillcolor=deepskyblue1, label=TracksInVertices, style=filled];
"LHCb__Converters__Composites__TracksWithPVsToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithPVsToVectorOfRecVertex_b247fde1" -> "LHCb__Converters__Composites__TracksWithPVsToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithPVsToVectorOfRecVertex_b247fde1_in_TracksInVertices"  [minlen=0, style=invis];
"LHCb__Converters__Composites__TracksWithPVsToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithPVsToVectorOfRecVertex_b247fde1_in_ConvertedTracks" [fillcolor=deepskyblue1, label=ConvertedTracks, style=filled];
"LHCb__Converters__Composites__TracksWithPVsToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithPVsToVectorOfRecVertex_b247fde1" -> "LHCb__Converters__Composites__TracksWithPVsToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithPVsToVectorOfRecVertex_b247fde1_in_ConvertedTracks"  [minlen=0, style=invis];
"LHCb__Converters__Composites__TracksWithPVsToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithPVsToVectorOfRecVertex_b247fde1_in_InputComposites" [fillcolor=deepskyblue1, label=InputComposites, style=filled];
"LHCb__Converters__Composites__TracksWithPVsToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithPVsToVectorOfRecVertex_b247fde1" -> "LHCb__Converters__Composites__TracksWithPVsToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithPVsToVectorOfRecVertex_b247fde1_in_InputComposites"  [minlen=0, style=invis];
"LHCb__Converters__Composites__TracksWithPVsToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithPVsToVectorOfRecVertex_b247fde1_out_OutputVertices" [fillcolor=coral1, label=OutputVertices, style=filled];
"LHCb__Converters__Composites__TracksWithPVsToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithPVsToVectorOfRecVertex_b247fde1" -> "LHCb__Converters__Composites__TracksWithPVsToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithPVsToVectorOfRecVertex_b247fde1_out_OutputVertices"  [minlen=0, style=invis];
}

"PrFilter__PrFittedForwardTracksWithPVs/PrFilter__PrFittedForwardTracksWithPVs_a3edb65e_out_Output" -> "LHCb__Converters__Composites__TracksWithPVsToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithPVsToVectorOfRecVertex_b247fde1_in_TracksInVertices";
subgraph "cluster_PrFilter__PrFittedForwardTracksWithPVs/PrFilter__PrFittedForwardTracksWithPVs_a3edb65e" {
bgcolor=aliceblue;
label="";
"PrFilter__PrFittedForwardTracksWithPVs/PrFilter__PrFittedForwardTracksWithPVs_a3edb65e" [label=<<B>PrFilter__PrFittedForwardTracksWithPVs/PrFilter__PrFittedForwardTracksWithPVs_a3edb65e</B><BR/>Cut = FILTER(Functor=( ( ( RHO_COORDINATE @ THREEMOMENTU[...]&#x27;]), _FORWARDARGS() ), _FORWARDARGS() ) &gt; 4.0 ) ))>, shape=plaintext];
"PrFilter__PrFittedForwardTracksWithPVs/PrFilter__PrFittedForwardTracksWithPVs_a3edb65e_in_Input" [fillcolor=deepskyblue1, label=Input, style=filled];
"PrFilter__PrFittedForwardTracksWithPVs/PrFilter__PrFittedForwardTracksWithPVs_a3edb65e" -> "PrFilter__PrFittedForwardTracksWithPVs/PrFilter__PrFittedForwardTracksWithPVs_a3edb65e_in_Input"  [minlen=0, style=invis];
"PrFilter__PrFittedForwardTracksWithPVs/PrFilter__PrFittedForwardTracksWithPVs_a3edb65e_in_Cut_PyConfDataDependencies" [fillcolor=deepskyblue1, label=Cut_PyConfDataDependencies, style=filled];
"PrFilter__PrFittedForwardTracksWithPVs/PrFilter__PrFittedForwardTracksWithPVs_a3edb65e" -> "PrFilter__PrFittedForwardTracksWithPVs/PrFilter__PrFittedForwardTracksWithPVs_a3edb65e_in_Cut_PyConfDataDependencies"  [minlen=0, style=invis];
"PrFilter__PrFittedForwardTracksWithPVs/PrFilter__PrFittedForwardTracksWithPVs_a3edb65e_out_OutputStorage" [fillcolor=coral1, label=OutputStorage, style=filled];
"PrFilter__PrFittedForwardTracksWithPVs/PrFilter__PrFittedForwardTracksWithPVs_a3edb65e" -> "PrFilter__PrFittedForwardTracksWithPVs/PrFilter__PrFittedForwardTracksWithPVs_a3edb65e_out_OutputStorage"  [minlen=0, style=invis];
"PrFilter__PrFittedForwardTracksWithPVs/PrFilter__PrFittedForwardTracksWithPVs_a3edb65e_out_Output" [fillcolor=coral1, label=Output, style=filled];
"PrFilter__PrFittedForwardTracksWithPVs/PrFilter__PrFittedForwardTracksWithPVs_a3edb65e" -> "PrFilter__PrFittedForwardTracksWithPVs/PrFilter__PrFittedForwardTracksWithPVs_a3edb65e_out_Output"  [minlen=0, style=invis];
}

"MakeZip__PrFittedForwardTracks__BestVertexRelations/MakeZip__PrFittedForwardTracks__BestVertexRelations_7f27b631_out_Output" -> "PrFilter__PrFittedForwardTracksWithPVs/PrFilter__PrFittedForwardTracksWithPVs_a3edb65e_in_Input";
"TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_out_OutputVertices" -> "PrFilter__PrFittedForwardTracksWithPVs/PrFilter__PrFittedForwardTracksWithPVs_a3edb65e_in_Cut_PyConfDataDependencies";
"fromV3TrackWithPVsV1TrackVector/fromV3TrackWithPVsV1TrackVector_86f8d305_out_OutputTracks" -> "LHCb__Converters__Composites__TracksWithPVsToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithPVsToVectorOfRecVertex_b247fde1_in_ConvertedTracks";
subgraph "cluster_fromV3TrackWithPVsV1TrackVector/fromV3TrackWithPVsV1TrackVector_86f8d305" {
bgcolor=aliceblue;
label="";
"fromV3TrackWithPVsV1TrackVector/fromV3TrackWithPVsV1TrackVector_86f8d305" [label=<<B>fromV3TrackWithPVsV1TrackVector/fromV3TrackWithPVsV1TrackVector_86f8d305</B><BR/>defaults-only>, shape=plaintext];
"fromV3TrackWithPVsV1TrackVector/fromV3TrackWithPVsV1TrackVector_86f8d305_in_InputTracks" [fillcolor=deepskyblue1, label=InputTracks, style=filled];
"fromV3TrackWithPVsV1TrackVector/fromV3TrackWithPVsV1TrackVector_86f8d305" -> "fromV3TrackWithPVsV1TrackVector/fromV3TrackWithPVsV1TrackVector_86f8d305_in_InputTracks"  [minlen=0, style=invis];
"fromV3TrackWithPVsV1TrackVector/fromV3TrackWithPVsV1TrackVector_86f8d305_out_OutputTracks" [fillcolor=coral1, label=OutputTracks, style=filled];
"fromV3TrackWithPVsV1TrackVector/fromV3TrackWithPVsV1TrackVector_86f8d305" -> "fromV3TrackWithPVsV1TrackVector/fromV3TrackWithPVsV1TrackVector_86f8d305_out_OutputTracks"  [minlen=0, style=invis];
}

"PrFilter__PrFittedForwardTracksWithPVs/PrFilter__PrFittedForwardTracksWithPVs_a3edb65e_out_Output" -> "fromV3TrackWithPVsV1TrackVector/fromV3TrackWithPVsV1TrackVector_86f8d305_in_InputTracks";
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs/CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs_12f1c1a9_out_Output" -> "LHCb__Converters__Composites__TracksWithPVsToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithPVsToVectorOfRecVertex_b247fde1_in_InputComposites";
subgraph "cluster_CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs/CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs_12f1c1a9" {
bgcolor=aliceblue;
label="";
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs/CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs_12f1c1a9" [label=<<B>CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs/CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs_12f1c1a9</B><BR/>AssumedMass = pi+<BR/>CombinationCut = ( ( ( RHO_COORDINATE @ THREEMOMENTUM ) &gt; 2000.0 ) &amp; ( MAXSDOCACHI2 &lt; 10.0 ) )<BR/>VertexCut = ( ( ( VALUE_OR(Value=nan) @ _CHI2DOF ) &lt; 10.0 ) &amp; [...]acks const&gt;&#x27;]) )&quot;)}, MVAType=MatrixNet) &gt; 0.96 ) )>, shape=plaintext];
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs/CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs_12f1c1a9_in_InputUniqueIDGenerator" [fillcolor=deepskyblue1, label=InputUniqueIDGenerator, style=filled];
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs/CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs_12f1c1a9" -> "CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs/CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs_12f1c1a9_in_InputUniqueIDGenerator"  [minlen=0, style=invis];
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs/CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs_12f1c1a9_in_InputTracks" [fillcolor=deepskyblue1, label=InputTracks, style=filled];
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs/CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs_12f1c1a9" -> "CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs/CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs_12f1c1a9_in_InputTracks"  [minlen=0, style=invis];
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs/CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs_12f1c1a9_in_CombinationCut_PyConfDataDependencies" [fillcolor=deepskyblue1, label=CombinationCut_PyConfDataDependencies, style=filled];
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs/CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs_12f1c1a9" -> "CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs/CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs_12f1c1a9_in_CombinationCut_PyConfDataDependencies"  [minlen=0, style=invis];
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs/CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs_12f1c1a9_in_VertexCut_PyConfDataDependencies" [fillcolor=deepskyblue1, label=VertexCut_PyConfDataDependencies, style=filled];
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs/CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs_12f1c1a9" -> "CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs/CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs_12f1c1a9_in_VertexCut_PyConfDataDependencies"  [minlen=0, style=invis];
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs/CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs_12f1c1a9_out_Output" [fillcolor=coral1, label=Output, style=filled];
"CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs/CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs_12f1c1a9" -> "CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs/CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs_12f1c1a9_out_Output"  [minlen=0, style=invis];
}

"UniqueIDGeneratorAlg/UniqueIDGeneratorAlg_26e527e9_out_Output" -> "CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs/CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs_12f1c1a9_in_InputUniqueIDGenerator";
"PrFilter__PrFittedForwardTracksWithPVs/PrFilter__PrFittedForwardTracksWithPVs_a3edb65e_out_Output" -> "CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs/CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs_12f1c1a9_in_InputTracks";
"TrackBeamLineVertexFinderSoA/TrackBeamLineVertexFinderSoA_9f55300c_out_OutputVertices" -> "CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs/CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs_12f1c1a9_in_VertexCut_PyConfDataDependencies";
"PrFilter__PrFittedForwardTracksWithPVs/PrFilter__PrFittedForwardTracksWithPVs_a3edb65e_out_Output" -> "CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs/CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs_12f1c1a9_in_VertexCut_PyConfDataDependencies";
"SelReportsMaker/SelReportsMaker_98f655d1_out_ObjectSummaries" -> "HltSelReportsWriter/HltSelReportsWriter_59c584ba_in_ObjectSummaries";
subgraph "cluster_HltDecReportsFilter/HltDecReportsFilter_b78ea82c" {
bgcolor=aliceblue;
label="";
"HltDecReportsFilter/HltDecReportsFilter_b78ea82c" [label=<<B>HltDecReportsFilter/HltDecReportsFilter_b78ea82c</B><BR/>Lines = [&#x27;Hlt1DiMuonHighMassDecision&#x27;, &#x27;Hlt1DiMuonLowMassD[...]1TrackMuonMVADecision&#x27;, &#x27;Hlt1TwoTrackMVADecision&#x27;]>, shape=plaintext];
"HltDecReportsFilter/HltDecReportsFilter_b78ea82c_in_DecReports" [fillcolor=deepskyblue1, label=DecReports, style=filled];
"HltDecReportsFilter/HltDecReportsFilter_b78ea82c" -> "HltDecReportsFilter/HltDecReportsFilter_b78ea82c_in_DecReports"  [minlen=0, style=invis];
}

"ExecutionReportsWriter/ExecutionReportsWriter_dd49b7d1_out_DecReportsLocation" -> "HltDecReportsFilter/HltDecReportsFilter_b78ea82c_in_DecReports";
subgraph "cluster_ExecutionReportsWriter/ExecutionReportsWriter_dd49b7d1" {
bgcolor=aliceblue;
label="";
"ExecutionReportsWriter/ExecutionReportsWriter_dd49b7d1" [label=<<B>ExecutionReportsWriter/ExecutionReportsWriter_dd49b7d1</B><BR/>Persist = [&#x27;Hlt1DiMuonHighMass&#x27;, &#x27;Hlt1DiMuonLowMass&#x27;, &#x27;Hlt1L[...]1TrackMVA&#x27;, &#x27;Hlt1TrackMuonMVA&#x27;, &#x27;Hlt1TwoTrackMVA&#x27;]<BR/>ANNSvcKey = Hlt1SelectionID<BR/>TCK = 2714783046>, shape=plaintext];
"ExecutionReportsWriter/ExecutionReportsWriter_dd49b7d1_out_DecReportsLocation" [fillcolor=coral1, label=DecReportsLocation, style=filled];
"ExecutionReportsWriter/ExecutionReportsWriter_dd49b7d1" -> "ExecutionReportsWriter/ExecutionReportsWriter_dd49b7d1_out_DecReportsLocation"  [minlen=0, style=invis];
}

subgraph "cluster_createODIN/Decode_ODIN" {
bgcolor=aliceblue;
label="";
"createODIN/Decode_ODIN" [label=<<B>createODIN/Decode_ODIN</B><BR/>defaults-only>, shape=plaintext];
"createODIN/Decode_ODIN_in_RawBanks" [fillcolor=deepskyblue1, label=RawBanks, style=filled];
"createODIN/Decode_ODIN" -> "createODIN/Decode_ODIN_in_RawBanks"  [minlen=0, style=invis];
"createODIN/Decode_ODIN_out_ODIN" [fillcolor=coral1, label=ODIN, style=filled];
"createODIN/Decode_ODIN" -> "createODIN/Decode_ODIN_out_ODIN"  [minlen=0, style=invis];
}

"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_out_RawBankLocations" -> "createODIN/Decode_ODIN_in_RawBanks";
subgraph "cluster_LHCb::UnpackRawEvent/UnpackRawEvent_ODIN" {
bgcolor=aliceblue;
label="";
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN" [label=<<B>LHCb::UnpackRawEvent/UnpackRawEvent_ODIN</B><BR/>BankTypes = [&#x27;ODIN&#x27;]<BR/>RawBankLocations = /Event/RawBanks/ODIN>, shape=plaintext];
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_in_RawEventLocation" [fillcolor=deepskyblue1, label=RawEventLocation, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN" -> "LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_in_RawEventLocation"  [minlen=0, style=invis];
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_out_RawBankLocations" [fillcolor=coral1, label=RawBankLocations, style=filled];
"LHCb::UnpackRawEvent/UnpackRawEvent_ODIN" -> "LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_out_RawBankLocations"  [minlen=0, style=invis];
}

"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" -> "LHCb::UnpackRawEvent/UnpackRawEvent_ODIN_in_RawEventLocation";
subgraph "cluster_Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent" {
bgcolor=aliceblue;
label="";
"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent" [label=<<B>Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent</B><BR/>Output = /Event/DAQ/RawEvent>, shape=plaintext];
"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output" [fillcolor=coral1, label=Output, style=filled];
"Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent" -> "Gaudi::Hive::FetchDataFromFile/Fetch__Event_DAQ_RawEvent_out_Output"  [minlen=0, style=invis];
}

}

The control flow graph looks like this:

strict digraph control_flow {
compound=True;
label="Control flow generated at Mon Apr 08 09:57:58 2024";
subgraph cluster_moore {
label=<<B>moore</B><BR/>LAZY_AND, ordered>;
edge [dir=forward];
subgraph cluster_lines {
label=<<B>lines</B><BR/>NONLAZY_OR, ordered>;
edge [dir=forward];
subgraph cluster_hlt_decision {
label=<<B>hlt_decision</B><BR/>NONLAZY_OR, unordered>;
edge [dir=none];
subgraph cluster_Hlt1DiMuonHighMassDecisionWithOutput {
label=<<B>Hlt1DiMuonHighMassDecisionWithOutput</B><BR/>LAZY_AND, ordered>;
edge [dir=forward];
subgraph cluster_Hlt1DiMuonHighMass {
label=<<B>Hlt1DiMuonHighMass</B><BR/>LAZY_AND, ordered>;
edge [dir=forward];
"Hlt1DiMuonHighMass_DeterministicPrescaler/Hlt1DiMuonHighMass_Prescaler" [label="DeterministicPrescaler/Hlt1DiMuonHighMass_Prescaler"];
"Hlt1DiMuonHighMass_PrGECFilter/DefaultGECFilter" [label="PrGECFilter/DefaultGECFilter"];
"Hlt1DiMuonHighMass_DeterministicPrescaler/Hlt1DiMuonHighMass_Prescaler" -> "Hlt1DiMuonHighMass_PrGECFilter/DefaultGECFilter";
"Hlt1DiMuonHighMass_VoidFilter/require_pvs" [label="VoidFilter/require_pvs"];
"Hlt1DiMuonHighMass_PrGECFilter/DefaultGECFilter" -> "Hlt1DiMuonHighMass_VoidFilter/require_pvs";
"Hlt1DiMuonHighMass_CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_2bd09f7a" [label="CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_2bd09f7a"];
"Hlt1DiMuonHighMass_VoidFilter/require_pvs" -> "Hlt1DiMuonHighMass_CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_2bd09f7a";
}

subgraph cluster_Hlt1DiMuonHighMassOutput {
label=<<B>Hlt1DiMuonHighMassOutput</B><BR/>NONLAZY_OR, unordered>;
edge [dir=none];
"Hlt1DiMuonHighMassOutput_LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex_5d9c3a9d" [label="LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex_5d9c3a9d"];
}

"Hlt1DiMuonHighMass_DeterministicPrescaler/Hlt1DiMuonHighMass_Prescaler" -> "Hlt1DiMuonHighMassOutput_LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex_5d9c3a9d"  [lhead=cluster_Hlt1DiMuonHighMassOutput, ltail=cluster_Hlt1DiMuonHighMass];
}

subgraph cluster_Hlt1DiMuonLowMassDecisionWithOutput {
label=<<B>Hlt1DiMuonLowMassDecisionWithOutput</B><BR/>LAZY_AND, ordered>;
edge [dir=forward];
subgraph cluster_Hlt1DiMuonLowMass {
label=<<B>Hlt1DiMuonLowMass</B><BR/>LAZY_AND, ordered>;
edge [dir=forward];
"Hlt1DiMuonLowMass_DeterministicPrescaler/Hlt1DiMuonLowMass_Prescaler" [label="DeterministicPrescaler/Hlt1DiMuonLowMass_Prescaler"];
"Hlt1DiMuonLowMass_PrGECFilter/DefaultGECFilter" [label="PrGECFilter/DefaultGECFilter"];
"Hlt1DiMuonLowMass_DeterministicPrescaler/Hlt1DiMuonLowMass_Prescaler" -> "Hlt1DiMuonLowMass_PrGECFilter/DefaultGECFilter";
"Hlt1DiMuonLowMass_VoidFilter/require_pvs" [label="VoidFilter/require_pvs"];
"Hlt1DiMuonLowMass_PrGECFilter/DefaultGECFilter" -> "Hlt1DiMuonLowMass_VoidFilter/require_pvs";
"Hlt1DiMuonLowMass_CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_385ff72d" [label="CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_385ff72d"];
"Hlt1DiMuonLowMass_VoidFilter/require_pvs" -> "Hlt1DiMuonLowMass_CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_385ff72d";
}

subgraph cluster_Hlt1DiMuonLowMassOutput {
label=<<B>Hlt1DiMuonLowMassOutput</B><BR/>NONLAZY_OR, unordered>;
edge [dir=none];
"Hlt1DiMuonLowMassOutput_LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex_fb2b99ce" [label="LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex_fb2b99ce"];
}

"Hlt1DiMuonLowMass_DeterministicPrescaler/Hlt1DiMuonLowMass_Prescaler" -> "Hlt1DiMuonLowMassOutput_LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex_fb2b99ce"  [lhead=cluster_Hlt1DiMuonLowMassOutput, ltail=cluster_Hlt1DiMuonLowMass];
}

"Hlt1DiMuonHighMass_DeterministicPrescaler/Hlt1DiMuonHighMass_Prescaler" -> "Hlt1DiMuonLowMass_DeterministicPrescaler/Hlt1DiMuonLowMass_Prescaler"  [lhead=cluster_Hlt1DiMuonLowMassDecisionWithOutput, ltail=cluster_Hlt1DiMuonHighMassDecisionWithOutput];
subgraph cluster_Hlt1LowPtDiMuonDecisionWithOutput {
label=<<B>Hlt1LowPtDiMuonDecisionWithOutput</B><BR/>LAZY_AND, ordered>;
edge [dir=forward];
subgraph cluster_Hlt1LowPtDiMuon {
label=<<B>Hlt1LowPtDiMuon</B><BR/>LAZY_AND, ordered>;
edge [dir=forward];
"Hlt1LowPtDiMuon_DeterministicPrescaler/Hlt1LowPtDiMuon_Prescaler" [label="DeterministicPrescaler/Hlt1LowPtDiMuon_Prescaler"];
"Hlt1LowPtDiMuon_PrGECFilter/DefaultGECFilter" [label="PrGECFilter/DefaultGECFilter"];
"Hlt1LowPtDiMuon_DeterministicPrescaler/Hlt1LowPtDiMuon_Prescaler" -> "Hlt1LowPtDiMuon_PrGECFilter/DefaultGECFilter";
"Hlt1LowPtDiMuon_VoidFilter/require_pvs" [label="VoidFilter/require_pvs"];
"Hlt1LowPtDiMuon_PrGECFilter/DefaultGECFilter" -> "Hlt1LowPtDiMuon_VoidFilter/require_pvs";
"Hlt1LowPtDiMuon_VoidFilter/require_twotracks" [label="VoidFilter/require_twotracks"];
"Hlt1LowPtDiMuon_VoidFilter/require_pvs" -> "Hlt1LowPtDiMuon_VoidFilter/require_twotracks";
"Hlt1LowPtDiMuon_CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_23e81e73" [label="CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_23e81e73"];
"Hlt1LowPtDiMuon_VoidFilter/require_twotracks" -> "Hlt1LowPtDiMuon_CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID/CombineTracksSIMD__2Body__PrFittedForwardTracksWithMuonID_23e81e73";
}

subgraph cluster_Hlt1LowPtDiMuonOutput {
label=<<B>Hlt1LowPtDiMuonOutput</B><BR/>NONLAZY_OR, unordered>;
edge [dir=none];
"Hlt1LowPtDiMuonOutput_LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex_3bb79c2c" [label="LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex_3bb79c2c"];
}

"Hlt1LowPtDiMuon_DeterministicPrescaler/Hlt1LowPtDiMuon_Prescaler" -> "Hlt1LowPtDiMuonOutput_LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithMuonIDToVectorOfRecVertex_3bb79c2c"  [lhead=cluster_Hlt1LowPtDiMuonOutput, ltail=cluster_Hlt1LowPtDiMuon];
}

"Hlt1DiMuonLowMass_DeterministicPrescaler/Hlt1DiMuonLowMass_Prescaler" -> "Hlt1LowPtDiMuon_DeterministicPrescaler/Hlt1LowPtDiMuon_Prescaler"  [lhead=cluster_Hlt1LowPtDiMuonDecisionWithOutput, ltail=cluster_Hlt1DiMuonLowMassDecisionWithOutput];
subgraph cluster_Hlt1MicroBiasLowMultVelo {
label=<<B>Hlt1MicroBiasLowMultVelo</B><BR/>LAZY_AND, ordered>;
edge [dir=forward];
"Hlt1MicroBiasLowMultVelo_DeterministicPrescaler/Hlt1MicroBiasLowMultVelo_Prescaler" [label="DeterministicPrescaler/Hlt1MicroBiasLowMultVelo_Prescaler"];
"Hlt1MicroBiasLowMultVelo_VoidFilter/VoidFilter_25efcbe9" [label="VoidFilter/VoidFilter_25efcbe9"];
"Hlt1MicroBiasLowMultVelo_DeterministicPrescaler/Hlt1MicroBiasLowMultVelo_Prescaler" -> "Hlt1MicroBiasLowMultVelo_VoidFilter/VoidFilter_25efcbe9";
"Hlt1MicroBiasLowMultVelo_VoidFilter/VoidFilter_230cad9b" [label="VoidFilter/VoidFilter_230cad9b"];
"Hlt1MicroBiasLowMultVelo_VoidFilter/VoidFilter_25efcbe9" -> "Hlt1MicroBiasLowMultVelo_VoidFilter/VoidFilter_230cad9b";
}

"Hlt1LowPtDiMuon_DeterministicPrescaler/Hlt1LowPtDiMuon_Prescaler" -> "Hlt1MicroBiasLowMultVelo_DeterministicPrescaler/Hlt1MicroBiasLowMultVelo_Prescaler"  [lhead=cluster_Hlt1MicroBiasLowMultVelo, ltail=cluster_Hlt1LowPtDiMuonDecisionWithOutput];
subgraph cluster_Hlt1NoBias {
label=<<B>Hlt1NoBias</B><BR/>LAZY_AND, ordered>;
edge [dir=forward];
"Hlt1NoBias_DeterministicPrescaler/Hlt1NoBias_Prescaler" [label="DeterministicPrescaler/Hlt1NoBias_Prescaler"];
"Hlt1NoBias_VoidFilter/VoidFilter_25efcbe9" [label="VoidFilter/VoidFilter_25efcbe9"];
"Hlt1NoBias_DeterministicPrescaler/Hlt1NoBias_Prescaler" -> "Hlt1NoBias_VoidFilter/VoidFilter_25efcbe9";
}

"Hlt1MicroBiasLowMultVelo_DeterministicPrescaler/Hlt1MicroBiasLowMultVelo_Prescaler" -> "Hlt1NoBias_DeterministicPrescaler/Hlt1NoBias_Prescaler"  [lhead=cluster_Hlt1NoBias, ltail=cluster_Hlt1MicroBiasLowMultVelo];
subgraph cluster_Hlt1SingleHighPtMuonDecisionWithOutput {
label=<<B>Hlt1SingleHighPtMuonDecisionWithOutput</B><BR/>LAZY_AND, ordered>;
edge [dir=forward];
subgraph cluster_Hlt1SingleHighPtMuon {
label=<<B>Hlt1SingleHighPtMuon</B><BR/>LAZY_AND, ordered>;
edge [dir=forward];
"Hlt1SingleHighPtMuon_DeterministicPrescaler/Hlt1SingleHighPtMuon_Prescaler" [label="DeterministicPrescaler/Hlt1SingleHighPtMuon_Prescaler"];
"Hlt1SingleHighPtMuon_PrGECFilter/DefaultGECFilter" [label="PrGECFilter/DefaultGECFilter"];
"Hlt1SingleHighPtMuon_DeterministicPrescaler/Hlt1SingleHighPtMuon_Prescaler" -> "Hlt1SingleHighPtMuon_PrGECFilter/DefaultGECFilter";
"Hlt1SingleHighPtMuon_PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_300f2dbf" [label="PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_300f2dbf"];
"Hlt1SingleHighPtMuon_PrGECFilter/DefaultGECFilter" -> "Hlt1SingleHighPtMuon_PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_300f2dbf";
}

subgraph cluster_Hlt1SingleHighPtMuonOutput {
label=<<B>Hlt1SingleHighPtMuonOutput</B><BR/>NONLAZY_OR, unordered>;
edge [dir=none];
"Hlt1SingleHighPtMuonOutput_fromV3TrackWithMuonIDV1TrackVector/fromV3TrackWithMuonIDV1TrackVector_17daa9b9" [label="fromV3TrackWithMuonIDV1TrackVector/fromV3TrackWithMuonIDV1TrackVector_17daa9b9"];
}

"Hlt1SingleHighPtMuon_DeterministicPrescaler/Hlt1SingleHighPtMuon_Prescaler" -> "Hlt1SingleHighPtMuonOutput_fromV3TrackWithMuonIDV1TrackVector/fromV3TrackWithMuonIDV1TrackVector_17daa9b9"  [lhead=cluster_Hlt1SingleHighPtMuonOutput, ltail=cluster_Hlt1SingleHighPtMuon];
}

"Hlt1NoBias_DeterministicPrescaler/Hlt1NoBias_Prescaler" -> "Hlt1SingleHighPtMuon_DeterministicPrescaler/Hlt1SingleHighPtMuon_Prescaler"  [lhead=cluster_Hlt1SingleHighPtMuonDecisionWithOutput, ltail=cluster_Hlt1NoBias];
subgraph cluster_Hlt1TrackMVADecisionWithOutput {
label=<<B>Hlt1TrackMVADecisionWithOutput</B><BR/>LAZY_AND, ordered>;
edge [dir=forward];
subgraph cluster_Hlt1TrackMVA {
label=<<B>Hlt1TrackMVA</B><BR/>LAZY_AND, ordered>;
edge [dir=forward];
"Hlt1TrackMVA_DeterministicPrescaler/Hlt1TrackMVA_Prescaler" [label="DeterministicPrescaler/Hlt1TrackMVA_Prescaler"];
"Hlt1TrackMVA_PrGECFilter/DefaultGECFilter" [label="PrGECFilter/DefaultGECFilter"];
"Hlt1TrackMVA_DeterministicPrescaler/Hlt1TrackMVA_Prescaler" -> "Hlt1TrackMVA_PrGECFilter/DefaultGECFilter";
"Hlt1TrackMVA_VoidFilter/require_pvs" [label="VoidFilter/require_pvs"];
"Hlt1TrackMVA_PrGECFilter/DefaultGECFilter" -> "Hlt1TrackMVA_VoidFilter/require_pvs";
"Hlt1TrackMVA_PrFilter__PrFittedForwardTracksWithPVs/PrFilter__PrFittedForwardTracksWithPVs_c4273fb1" [label="PrFilter__PrFittedForwardTracksWithPVs/PrFilter__PrFittedForwardTracksWithPVs_c4273fb1"];
"Hlt1TrackMVA_VoidFilter/require_pvs" -> "Hlt1TrackMVA_PrFilter__PrFittedForwardTracksWithPVs/PrFilter__PrFittedForwardTracksWithPVs_c4273fb1";
}

subgraph cluster_Hlt1TrackMVAOutput {
label=<<B>Hlt1TrackMVAOutput</B><BR/>NONLAZY_OR, unordered>;
edge [dir=none];
"Hlt1TrackMVAOutput_fromV3TrackWithPVsV1TrackVector/fromV3TrackWithPVsV1TrackVector_30798de1" [label="fromV3TrackWithPVsV1TrackVector/fromV3TrackWithPVsV1TrackVector_30798de1"];
}

"Hlt1TrackMVA_DeterministicPrescaler/Hlt1TrackMVA_Prescaler" -> "Hlt1TrackMVAOutput_fromV3TrackWithPVsV1TrackVector/fromV3TrackWithPVsV1TrackVector_30798de1"  [lhead=cluster_Hlt1TrackMVAOutput, ltail=cluster_Hlt1TrackMVA];
}

"Hlt1SingleHighPtMuon_DeterministicPrescaler/Hlt1SingleHighPtMuon_Prescaler" -> "Hlt1TrackMVA_DeterministicPrescaler/Hlt1TrackMVA_Prescaler"  [lhead=cluster_Hlt1TrackMVADecisionWithOutput, ltail=cluster_Hlt1SingleHighPtMuonDecisionWithOutput];
subgraph cluster_Hlt1TrackMuonMVADecisionWithOutput {
label=<<B>Hlt1TrackMuonMVADecisionWithOutput</B><BR/>LAZY_AND, ordered>;
edge [dir=forward];
subgraph cluster_Hlt1TrackMuonMVA {
label=<<B>Hlt1TrackMuonMVA</B><BR/>LAZY_AND, ordered>;
edge [dir=forward];
"Hlt1TrackMuonMVA_DeterministicPrescaler/Hlt1TrackMuonMVA_Prescaler" [label="DeterministicPrescaler/Hlt1TrackMuonMVA_Prescaler"];
"Hlt1TrackMuonMVA_PrGECFilter/DefaultGECFilter" [label="PrGECFilter/DefaultGECFilter"];
"Hlt1TrackMuonMVA_DeterministicPrescaler/Hlt1TrackMuonMVA_Prescaler" -> "Hlt1TrackMuonMVA_PrGECFilter/DefaultGECFilter";
"Hlt1TrackMuonMVA_VoidFilter/require_pvs" [label="VoidFilter/require_pvs"];
"Hlt1TrackMuonMVA_PrGECFilter/DefaultGECFilter" -> "Hlt1TrackMuonMVA_VoidFilter/require_pvs";
"Hlt1TrackMuonMVA_PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1fabecf8" [label="PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1fabecf8"];
"Hlt1TrackMuonMVA_VoidFilter/require_pvs" -> "Hlt1TrackMuonMVA_PrFilter__PrFittedForwardTracksWithMuonID/PrFilter__PrFittedForwardTracksWithMuonID_1fabecf8";
}

subgraph cluster_Hlt1TrackMuonMVAOutput {
label=<<B>Hlt1TrackMuonMVAOutput</B><BR/>NONLAZY_OR, unordered>;
edge [dir=none];
"Hlt1TrackMuonMVAOutput_fromV3TrackWithMuonIDV1TrackVector/fromV3TrackWithMuonIDV1TrackVector_1db586a9" [label="fromV3TrackWithMuonIDV1TrackVector/fromV3TrackWithMuonIDV1TrackVector_1db586a9"];
}

"Hlt1TrackMuonMVA_DeterministicPrescaler/Hlt1TrackMuonMVA_Prescaler" -> "Hlt1TrackMuonMVAOutput_fromV3TrackWithMuonIDV1TrackVector/fromV3TrackWithMuonIDV1TrackVector_1db586a9"  [lhead=cluster_Hlt1TrackMuonMVAOutput, ltail=cluster_Hlt1TrackMuonMVA];
}

"Hlt1TrackMVA_DeterministicPrescaler/Hlt1TrackMVA_Prescaler" -> "Hlt1TrackMuonMVA_DeterministicPrescaler/Hlt1TrackMuonMVA_Prescaler"  [lhead=cluster_Hlt1TrackMuonMVADecisionWithOutput, ltail=cluster_Hlt1TrackMVADecisionWithOutput];
subgraph cluster_Hlt1TwoTrackMVADecisionWithOutput {
label=<<B>Hlt1TwoTrackMVADecisionWithOutput</B><BR/>LAZY_AND, ordered>;
edge [dir=forward];
subgraph cluster_Hlt1TwoTrackMVA {
label=<<B>Hlt1TwoTrackMVA</B><BR/>LAZY_AND, ordered>;
edge [dir=forward];
"Hlt1TwoTrackMVA_DeterministicPrescaler/Hlt1TwoTrackMVA_Prescaler" [label="DeterministicPrescaler/Hlt1TwoTrackMVA_Prescaler"];
"Hlt1TwoTrackMVA_PrGECFilter/DefaultGECFilter" [label="PrGECFilter/DefaultGECFilter"];
"Hlt1TwoTrackMVA_DeterministicPrescaler/Hlt1TwoTrackMVA_Prescaler" -> "Hlt1TwoTrackMVA_PrGECFilter/DefaultGECFilter";
"Hlt1TwoTrackMVA_VoidFilter/require_pvs" [label="VoidFilter/require_pvs"];
"Hlt1TwoTrackMVA_PrGECFilter/DefaultGECFilter" -> "Hlt1TwoTrackMVA_VoidFilter/require_pvs";
"Hlt1TwoTrackMVA_CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs/CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs_12f1c1a9" [label="CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs/CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs_12f1c1a9"];
"Hlt1TwoTrackMVA_VoidFilter/require_pvs" -> "Hlt1TwoTrackMVA_CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs/CombineTracksSIMD__2Body__PrFittedForwardTracksWithPVs_12f1c1a9";
}

subgraph cluster_Hlt1TwoTrackMVAOutput {
label=<<B>Hlt1TwoTrackMVAOutput</B><BR/>NONLAZY_OR, unordered>;
edge [dir=none];
"Hlt1TwoTrackMVAOutput_LHCb__Converters__Composites__TracksWithPVsToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithPVsToVectorOfRecVertex_b247fde1" [label="LHCb__Converters__Composites__TracksWithPVsToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithPVsToVectorOfRecVertex_b247fde1"];
}

"Hlt1TwoTrackMVA_DeterministicPrescaler/Hlt1TwoTrackMVA_Prescaler" -> "Hlt1TwoTrackMVAOutput_LHCb__Converters__Composites__TracksWithPVsToVectorOfRecVertex/LHCb__Converters__Composites__TracksWithPVsToVectorOfRecVertex_b247fde1"  [lhead=cluster_Hlt1TwoTrackMVAOutput, ltail=cluster_Hlt1TwoTrackMVA];
}

"Hlt1TrackMuonMVA_DeterministicPrescaler/Hlt1TrackMuonMVA_Prescaler" -> "Hlt1TwoTrackMVA_DeterministicPrescaler/Hlt1TwoTrackMVA_Prescaler"  [lhead=cluster_Hlt1TwoTrackMVADecisionWithOutput, ltail=cluster_Hlt1TrackMuonMVADecisionWithOutput];
}

subgraph cluster_monitor_decisions {
label=<<B>monitor_decisions</B><BR/>LAZY_AND, ordered>;
edge [dir=forward];
"monitor_decisions_DeterministicPrescaler/HLT1PrescaleDecReportsMonitor" [label="DeterministicPrescaler/HLT1PrescaleDecReportsMonitor"];
"monitor_decisions_HltDecReportsMonitor/HLT1DecReportsMonitor" [label="HltDecReportsMonitor/HLT1DecReportsMonitor"];
"monitor_decisions_DeterministicPrescaler/HLT1PrescaleDecReportsMonitor" -> "monitor_decisions_HltDecReportsMonitor/HLT1DecReportsMonitor";
"monitor_decisions_DeterministicPrescaler/HLT1PostscaleDecReportsMonitor" [label="DeterministicPrescaler/HLT1PostscaleDecReportsMonitor"];
"monitor_decisions_HltDecReportsMonitor/HLT1DecReportsMonitor" -> "monitor_decisions_DeterministicPrescaler/HLT1PostscaleDecReportsMonitor";
}

"Hlt1DiMuonHighMass_DeterministicPrescaler/Hlt1DiMuonHighMass_Prescaler" -> "monitor_decisions_DeterministicPrescaler/HLT1PrescaleDecReportsMonitor"  [lhead=cluster_monitor_decisions, ltail=cluster_hlt_decision];
}

subgraph cluster_report_writers {
label=<<B>report_writers</B><BR/>NONLAZY_OR, ordered>;
edge [dir=forward];
"report_writers_ExecutionReportsWriter/ExecutionReportsWriter_dd49b7d1" [label="ExecutionReportsWriter/ExecutionReportsWriter_dd49b7d1"];
"report_writers_HltDecReportsWriter/HltDecReportsWriter_4997547a" [label="HltDecReportsWriter/HltDecReportsWriter_4997547a"];
"report_writers_ExecutionReportsWriter/ExecutionReportsWriter_dd49b7d1" -> "report_writers_HltDecReportsWriter/HltDecReportsWriter_4997547a";
"report_writers_HltSelReportsWriter/HltSelReportsWriter_59c584ba" [label="HltSelReportsWriter/HltSelReportsWriter_59c584ba"];
"report_writers_HltDecReportsWriter/HltDecReportsWriter_4997547a" -> "report_writers_HltSelReportsWriter/HltSelReportsWriter_59c584ba";
}

"Hlt1DiMuonHighMass_DeterministicPrescaler/Hlt1DiMuonHighMass_Prescaler" -> "report_writers_ExecutionReportsWriter/ExecutionReportsWriter_dd49b7d1"  [lhead=cluster_report_writers, ltail=cluster_lines];
subgraph cluster_stream_writers {
label=<<B>stream_writers</B><BR/>NONLAZY_OR, unordered>;
edge [dir=none];
subgraph cluster_default_writer {
label=<<B>default_writer</B><BR/>LAZY_AND, ordered>;
edge [dir=forward];
"default_writer_HltDecReportsFilter/HltDecReportsFilter_b78ea82c" [label="HltDecReportsFilter/HltDecReportsFilter_b78ea82c"];
}

}

"report_writers_ExecutionReportsWriter/ExecutionReportsWriter_dd49b7d1" -> "default_writer_HltDecReportsFilter/HltDecReportsFilter_b78ea82c"  [lhead=cluster_stream_writers, ltail=cluster_report_writers];
}

}

Looking at these graphs can help you to visualise how your selections are connected to the reconstruction, and how the control flow is defined.

Footnotes

1

The printout of the errors encountered throughout this tutorial may depend on the version of Moore. The error listed here corresponds to (among others) v53r4.

2

These graphs are generated automatically each time Moore’s master branch changes, so what you see here is the most up-to-date reconstruction flow we have.