Public Member Functions | Protected Types | Protected Member Functions | Protected Attributes | Private Member Functions | List of all members
lar_content::StreamSelectionAlgorithm Class Referenceabstract

StreamSelectionAlgorithm class. More...

#include <StreamSelectionAlgorithm.h>

Inheritance diagram for lar_content::StreamSelectionAlgorithm:
lar_dl_content::DlTrackShowerStreamSelectionAlgorithm

Public Member Functions

 StreamSelectionAlgorithm ()
 Default constructor. More...
 
virtual ~StreamSelectionAlgorithm ()=default
 

Protected Types

typedef std::map< std::string, pandora::ClusterList > ClusterListMap
 

Protected Member Functions

virtual pandora::StatusCode AllocateToStreams (const pandora::Cluster *const pCluster)=0
 Allocate a cluster to the appropriate streams. More...
 
pandora::StatusCode ReadSettings (const pandora::TiXmlHandle xmlHandle)
 

Protected Attributes

std::string m_inputListName
 The input list name if not using the current list. More...
 
std::string m_listType
 The type of the input lists (currently only Cluster is supported) More...
 
pandora::StringVector m_listNames
 The name of the output lists. More...
 
ClusterListMap m_clusterListMap
 The map from cluster list names to cluster lists. More...
 

Private Member Functions

pandora::StatusCode Run ()
 

Detailed Description

StreamSelectionAlgorithm class.

Definition at line 19 of file StreamSelectionAlgorithm.h.

Member Typedef Documentation

typedef std::map<std::string, pandora::ClusterList> lar_content::StreamSelectionAlgorithm::ClusterListMap
protected

Definition at line 30 of file StreamSelectionAlgorithm.h.

Constructor & Destructor Documentation

lar_content::StreamSelectionAlgorithm::StreamSelectionAlgorithm ( )

Default constructor.

Definition at line 25 of file StreamSelectionAlgorithm.cc.

25  : m_inputListName{""}, m_listType{"cluster"}
26 {
27 }
std::string m_listType
The type of the input lists (currently only Cluster is supported)
std::string m_inputListName
The input list name if not using the current list.
virtual lar_content::StreamSelectionAlgorithm::~StreamSelectionAlgorithm ( )
virtualdefault

Member Function Documentation

virtual pandora::StatusCode lar_content::StreamSelectionAlgorithm::AllocateToStreams ( const pandora::Cluster *const  pCluster)
protectedpure virtual

Allocate a cluster to the appropriate streams.

Parameters
pClusterThe cluster to allocate to a stream
Returns
The StatusCode

Implemented in lar_dl_content::DlTrackShowerStreamSelectionAlgorithm.

StatusCode lar_content::StreamSelectionAlgorithm::ReadSettings ( const pandora::TiXmlHandle  xmlHandle)
protected

Definition at line 72 of file StreamSelectionAlgorithm.cc.

73 {
74  PANDORA_RETURN_RESULT_IF_AND_IF(STATUS_CODE_SUCCESS, STATUS_CODE_NOT_FOUND, !=, XmlHelper::ReadValue(xmlHandle, "InputListName", m_inputListName));
75  PANDORA_RETURN_RESULT_IF_AND_IF(STATUS_CODE_SUCCESS, STATUS_CODE_NOT_FOUND, !=, XmlHelper::ReadValue(xmlHandle, "ListType", m_listType));
76  std::transform(m_listType.begin(), m_listType.end(), m_listType.begin(), ::tolower);
77  if (m_listType != "cluster")
78  {
79  std::cout << "StreamingAlgorithm::ReadSettings - Error: Only Cluster list type is supported at this time" << std::endl;
80  return STATUS_CODE_INVALID_PARAMETER;
81  }
82 
83  // ATTN - Classes implementing this interface should ensure that m_listNames gets populated from the list names provided to the
84  // implementing class
85  PANDORA_RETURN_RESULT_IF_AND_IF(STATUS_CODE_SUCCESS, STATUS_CODE_NOT_FOUND, !=, XmlHelper::ReadVectorOfValues(xmlHandle, "ListNames", m_listNames));
86 
87  return STATUS_CODE_SUCCESS;
88 }
std::string m_listType
The type of the input lists (currently only Cluster is supported)
std::string m_inputListName
The input list name if not using the current list.
pandora::StringVector m_listNames
The name of the output lists.
QTextStream & endl(QTextStream &s)
StatusCode lar_content::StreamSelectionAlgorithm::Run ( )
private

Definition at line 31 of file StreamSelectionAlgorithm.cc.

32 {
33  if (m_listNames.empty())
34  {
35  std::cout << "StreamSelectionAlgorithm::Run - Error: No output lists found" << std::endl;
36  return STATUS_CODE_NOT_FOUND;
37  }
38 
39  const ClusterList *pClusterList{nullptr};
40  std::string originalClusterListName;
41  if (m_inputListName.empty())
42  {
43  PANDORA_RETURN_RESULT_IF(STATUS_CODE_SUCCESS, !=, PandoraContentApi::GetCurrentList(*this, pClusterList));
44  PANDORA_RETURN_RESULT_IF(STATUS_CODE_SUCCESS, !=, PandoraContentApi::GetCurrentListName<Cluster>(*this, originalClusterListName));
45  }
46  else
47  {
48  PANDORA_RETURN_RESULT_IF(STATUS_CODE_SUCCESS, !=, PandoraContentApi::GetList(*this, m_inputListName, pClusterList));
49  originalClusterListName = m_inputListName;
50  }
51 
52  for (std::string listName : m_listNames)
53  m_clusterListMap[listName] = ClusterList();
54 
55  for (const Cluster *pCluster : *pClusterList)
56  {
57  StatusCode status{this->AllocateToStreams(pCluster)};
58  if (status != STATUS_CODE_SUCCESS)
59  return status;
60  }
61 
62  // ATTN - We're ok with saving empty lists here and allowing future algorithms to simply do nothing if there are no clusters
63  // Moves the subset of clusters in the cluster list from the old list to the new list
64  for (std::string listName : m_listNames)
65  PandoraContentApi::SaveList<ClusterList>(*this, originalClusterListName, listName, m_clusterListMap.at(listName));
66 
67  return STATUS_CODE_SUCCESS;
68 }
std::string string
Definition: nybbler.cc:12
std::string m_inputListName
The input list name if not using the current list.
pandora::StringVector m_listNames
The name of the output lists.
ClusterListMap m_clusterListMap
The map from cluster list names to cluster lists.
QTextStream & endl(QTextStream &s)
virtual pandora::StatusCode AllocateToStreams(const pandora::Cluster *const pCluster)=0
Allocate a cluster to the appropriate streams.

Member Data Documentation

ClusterListMap lar_content::StreamSelectionAlgorithm::m_clusterListMap
protected

The map from cluster list names to cluster lists.

Definition at line 46 of file StreamSelectionAlgorithm.h.

std::string lar_content::StreamSelectionAlgorithm::m_inputListName
protected

The input list name if not using the current list.

Definition at line 43 of file StreamSelectionAlgorithm.h.

pandora::StringVector lar_content::StreamSelectionAlgorithm::m_listNames
protected

The name of the output lists.

Definition at line 45 of file StreamSelectionAlgorithm.h.

std::string lar_content::StreamSelectionAlgorithm::m_listType
protected

The type of the input lists (currently only Cluster is supported)

Definition at line 44 of file StreamSelectionAlgorithm.h.


The documentation for this class was generated from the following files: