TransverseTensorVisualizationTool.h
Go to the documentation of this file.
1 /**
2  * @file larpandoracontent/LArMonitoring/TransverseTensorVisualizationTool.h
3  *
4  * @brief Header file for the transverse tensor visualization tool class.
5  *
6  * $Log: $
7  */
8 #ifndef TRANSVERSE_TENSOR_VISUALIZATION_TOOL_H
9 #define TRANSVERSE_TENSOR_VISUALIZATION_TOOL_H 1
10 
12 
13 namespace lar_content
14 {
15 
16 /**
17  * @brief TransverseTensorVisualizationTool class
18  */
20 {
21 public:
22  /**
23  * @brief Default constructor
24  */
26 
27  bool Run(ThreeViewTransverseTracksAlgorithm *const pAlgorithm, TensorType &overlapTensor);
28 
29 private:
30  pandora::StatusCode ReadSettings(const pandora::TiXmlHandle xmlHandle);
31 
32  unsigned int m_minClusterConnections; ///< The minimum number of cluster connections for display
33  bool m_ignoreUnavailableClusters; ///< Whether to ignore (skip-over) unavailable clusters in the tensor
34  bool m_showEachIndividualElement; ///< Whether to draw each individual tensor element
35  bool m_showContext; ///< Whether to show input cluster lists to add context to tensor elements
36 };
37 
38 } // namespace lar_content
39 
40 #endif // #ifndef TRANSVERSE_TENSOR_VISUALIZATION_TOOL_H
bool m_showContext
Whether to show input cluster lists to add context to tensor elements.
bool m_ignoreUnavailableClusters
Whether to ignore (skip-over) unavailable clusters in the tensor.
bool Run(ThreeViewTransverseTracksAlgorithm *const pAlgorithm, TensorType &overlapTensor)
Run the algorithm tool.
pandora::StatusCode ReadSettings(const pandora::TiXmlHandle xmlHandle)
Header file for the three view transverse tracks algorithm class.
bool m_showEachIndividualElement
Whether to draw each individual tensor element.
unsigned int m_minClusterConnections
The minimum number of cluster connections for display.