Public Member Functions | Protected Member Functions | Private Attributes | List of all members
ShowerRecoTools::IShowerTool Class Referenceabstract

#include <IShowerTool.h>

Inheritance diagram for ShowerRecoTools::IShowerTool:
ShowerRecoTools::Shower2DLinearRegressionTrackHitFinder ShowerRecoTools::Shower3DCylinderTrackHitFinder ShowerRecoTools::ShowerBayesianTrucatingdEdx ShowerRecoTools::ShowerDirectionCheater ShowerRecoTools::ShowerDirectionTopologyDecisionTool ShowerRecoTools::ShowerExampleTool ShowerRecoTools::ShowerIncrementalTrackHitFinder ShowerRecoTools::ShowerLengthPercentile ShowerRecoTools::ShowerLinearEnergy ShowerRecoTools::ShowerNumElectronsEnergy ShowerRecoTools::ShowerPandoraSlidingFitTrackFinder ShowerRecoTools::ShowerPCADirection ShowerRecoTools::ShowerPCAEigenvalueLength ShowerRecoTools::ShowerPCAPropergationStartPosition ShowerRecoTools::ShowerPFPVertexStartPosition ShowerRecoTools::ShowerSkeletonTool ShowerRecoTools::ShowerStartPositionCheater ShowerRecoTools::ShowerTrackColinearTrajPointDirection ShowerRecoTools::ShowerTrackDirection ShowerRecoTools::ShowerTrackFinderCheater ShowerRecoTools::ShowerTrackHitDirection ShowerRecoTools::ShowerTrackPCADirection ShowerRecoTools::ShowerTrackSpacePointDirection ShowerRecoTools::ShowerTrackStartPosition ShowerRecoTools::ShowerTrackTrajPointDirection ShowerRecoTools::ShowerTrackTrajToSpacePoint ShowerRecoTools::ShowerTrajPointdEdx ShowerRecoTools::ShowerUnidirectiondEdx

Public Member Functions

 IShowerTool (const fhicl::ParameterSet &pset)
 
virtual ~IShowerTool () noexcept=default
 
virtual int CalculateElement (const art::Ptr< recob::PFParticle > &pfparticle, art::Event &Event, reco::shower::ShowerElementHolder &ShowerEleHolder)=0
 
int RunShowerTool (const art::Ptr< recob::PFParticle > &pfparticle, art::Event &Event, reco::shower::ShowerElementHolder &ShowerEleHolder, std::string evd_display_name_append="")
 
virtual void InitialiseProducers ()
 
void SetPtr (art::ProducesCollector *collector)
 
void InitaliseProducerPtr (reco::shower::ShowerProducedPtrsHolder &uniqueproducerPtrs)
 
virtual int AddAssociations (const art::Ptr< recob::PFParticle > &pfpPtr, art::Event &Event, reco::shower::ShowerElementHolder &ShowerEleHolder)
 

Protected Member Functions

const shower::LArPandoraShowerAlgGetLArPandoraShowerAlg () const
 
template<class T >
art::Ptr< T > GetProducedElementPtr (std::string Name, reco::shower::ShowerElementHolder &ShowerEleHolder, int iter=-1)
 
template<class T >
void InitialiseProduct (std::string Name, std::string InstanceName="")
 
template<class T , class A , class B >
void AddSingle (A &a, B &b, std::string Name)
 
int GetVectorPtrSize (std::string Name)
 
void PrintPtrs ()
 
void PrintPtr (std::string Name)
 

Private Attributes

reco::shower::ShowerProducedPtrsHolderUniquePtrs
 
shower::LArPandoraShowerAlg fLArPandoraShowerAlg
 
bool fRunEventDisplay
 
art::ProducesCollectorcollectorPtr
 

Detailed Description

Definition at line 25 of file IShowerTool.h.

Constructor & Destructor Documentation

ShowerRecoTools::IShowerTool::IShowerTool ( const fhicl::ParameterSet pset)
inline

Definition at line 28 of file IShowerTool.h.

29  : fLArPandoraShowerAlg(pset.get<fhicl::ParameterSet>("LArPandoraShowerAlg"))
30  , fRunEventDisplay(pset.get<bool>("EnableEventDisplay")){};
T get(std::string const &key) const
Definition: ParameterSet.h:271
shower::LArPandoraShowerAlg fLArPandoraShowerAlg
Definition: IShowerTool.h:97
virtual ShowerRecoTools::IShowerTool::~IShowerTool ( )
virtualdefaultnoexcept

Member Function Documentation

virtual int ShowerRecoTools::IShowerTool::AddAssociations ( const art::Ptr< recob::PFParticle > &  pfpPtr,
art::Event Event,
reco::shower::ShowerElementHolder ShowerEleHolder 
)
inlinevirtual
template<class T , class A , class B >
void ShowerRecoTools::IShowerTool::AddSingle ( A a,
B b,
std::string  Name 
)
inlineprotected

Definition at line 160 of file IShowerTool.h.

161  {
162  UniquePtrs->AddSingle<T>(a, b, Name);
163  }
reco::shower::ShowerProducedPtrsHolder * UniquePtrs
Definition: IShowerTool.h:90
ChannelGroupService::Name Name
void AddSingle(A &a, B &b, const std::string &Name)
const double a
static bool * b
Definition: config.cpp:1043
virtual int ShowerRecoTools::IShowerTool::CalculateElement ( const art::Ptr< recob::PFParticle > &  pfparticle,
art::Event Event,
reco::shower::ShowerElementHolder ShowerEleHolder 
)
pure virtual
const shower::LArPandoraShowerAlg& ShowerRecoTools::IShowerTool::GetLArPandoraShowerAlg ( ) const
inlineprotected

Definition at line 87 of file IShowerTool.h.

88  {
89  return fLArPandoraShowerAlg;
90  };
shower::LArPandoraShowerAlg fLArPandoraShowerAlg
Definition: IShowerTool.h:97
template<class T >
art::Ptr<T> ShowerRecoTools::IShowerTool::GetProducedElementPtr ( std::string  Name,
reco::shower::ShowerElementHolder ShowerEleHolder,
int  iter = -1 
)
inlineprotected

Definition at line 108 of file IShowerTool.h.

111  {
112 
113  //Check the element has been set
114  bool check_element = ShowerEleHolder.CheckElement(Name);
115  if (!check_element) {
116  throw cet::exception("IShowerTool") << "tried to get a element that does not exist. Failed "
117  "at making the art ptr for Element: "
118  << Name << std::endl;
119  }
120 
121  //Check the unique ptr has been set.
122  bool check_ptr = UniquePtrs->CheckUniqueProduerPtr(Name);
123  if (!check_ptr) {
124  throw cet::exception("IShowerTool")
125  << "tried to get a ptr that does not exist. Failed at making the art ptr for Element"
126  << Name;
127  }
128 
129  //Check if the user has defined an index if not just use the current shower index/
130  int index;
131  if (iter != -1) { index = iter; }
132  else {
133  index = ShowerEleHolder.GetShowerNumber();
134  }
135 
136  //Make the ptr
137  return UniquePtrs->GetArtPtr<T>(Name, index);
138  }
reco::shower::ShowerProducedPtrsHolder * UniquePtrs
Definition: IShowerTool.h:90
ChannelGroupService::Name Name
bool CheckUniqueProduerPtr(const std::string &Name) const
bool CheckElement(const std::string &Name) const
art::Ptr< T > GetArtPtr(const std::string &Name, const int &iter) const
cet::coded_exception< error, detail::translate > exception
Definition: exception.h:33
QTextStream & endl(QTextStream &s)
int ShowerRecoTools::IShowerTool::GetVectorPtrSize ( std::string  Name)
inlineprotected

Definition at line 167 of file IShowerTool.h.

168  {
170  }
reco::shower::ShowerProducedPtrsHolder * UniquePtrs
Definition: IShowerTool.h:90
ChannelGroupService::Name Name
int GetVectorPtrSize(const std::string &Name) const
void ShowerRecoTools::IShowerTool::InitaliseProducerPtr ( reco::shower::ShowerProducedPtrsHolder uniqueproducerPtrs)
inline

Definition at line 71 of file IShowerTool.h.

72  {
73  UniquePtrs = &uniqueproducerPtrs;
74  }
reco::shower::ShowerProducedPtrsHolder * UniquePtrs
Definition: IShowerTool.h:90
virtual void ShowerRecoTools::IShowerTool::InitialiseProducers ( )
inlinevirtual
template<class T >
void ShowerRecoTools::IShowerTool::InitialiseProduct ( std::string  Name,
std::string  InstanceName = "" 
)
inlineprotected

Definition at line 144 of file IShowerTool.h.

145  {
146 
147  if (collectorPtr == nullptr) {
148  mf::LogWarning("IShowerTool") << "The art::ProducesCollector ptr has not been set";
149  return;
150  }
151 
152  collectorPtr->produces<T>(InstanceName);
154  }
reco::shower::ShowerProducedPtrsHolder * UniquePtrs
Definition: IShowerTool.h:90
ChannelGroupService::Name Name
art::ProducesCollector * collectorPtr
Definition: IShowerTool.h:102
void produces(std::string const &instanceName={}, Persistable const persistable=Persistable::Yes)
MaybeLogger_< ELseverityLevel::ELsev_warning, false > LogWarning
int SetShowerUniqueProduerPtr(type< T >, const std::string &Name, const std::string &Instance="")
void ShowerRecoTools::IShowerTool::PrintPtr ( std::string  Name)
inlineprotected

Definition at line 179 of file IShowerTool.h.

180  {
182  }
reco::shower::ShowerProducedPtrsHolder * UniquePtrs
Definition: IShowerTool.h:90
ChannelGroupService::Name Name
void PrintPtr(const std::string &Name) const
void ShowerRecoTools::IShowerTool::PrintPtrs ( )
inlineprotected

Definition at line 173 of file IShowerTool.h.

174  {
176  }
reco::shower::ShowerProducedPtrsHolder * UniquePtrs
Definition: IShowerTool.h:90
int ShowerRecoTools::IShowerTool::RunShowerTool ( const art::Ptr< recob::PFParticle > &  pfparticle,
art::Event Event,
reco::shower::ShowerElementHolder ShowerEleHolder,
std::string  evd_display_name_append = "" 
)
inline

Definition at line 42 of file IShowerTool.h.

46  {
47 
48  int calculation_status = CalculateElement(pfparticle, Event, ShowerEleHolder);
49  if (calculation_status != 0) return calculation_status;
50  if (fRunEventDisplay) {
52  pfparticle, Event, ShowerEleHolder, evd_display_name_append);
53  }
54  return calculation_status;
55  }
void DebugEVD(art::Ptr< recob::PFParticle > const &pfparticle, art::Event const &Event, const reco::shower::ShowerElementHolder &ShowerEleHolder, std::string const &evd_disp_name_append="") const
virtual int CalculateElement(const art::Ptr< recob::PFParticle > &pfparticle, art::Event &Event, reco::shower::ShowerElementHolder &ShowerEleHolder)=0
const shower::LArPandoraShowerAlg & GetLArPandoraShowerAlg() const
Definition: IShowerTool.h:87
void ShowerRecoTools::IShowerTool::SetPtr ( art::ProducesCollector collector)
inline

Definition at line 64 of file IShowerTool.h.

65  {
66  collectorPtr = collector;
67  }
art::ProducesCollector * collectorPtr
Definition: IShowerTool.h:102

Member Data Documentation

art::ProducesCollector* ShowerRecoTools::IShowerTool::collectorPtr
private

Definition at line 102 of file IShowerTool.h.

shower::LArPandoraShowerAlg ShowerRecoTools::IShowerTool::fLArPandoraShowerAlg
private

Definition at line 97 of file IShowerTool.h.

bool ShowerRecoTools::IShowerTool::fRunEventDisplay
private

Definition at line 100 of file IShowerTool.h.

reco::shower::ShowerProducedPtrsHolder* ShowerRecoTools::IShowerTool::UniquePtrs
private

Definition at line 90 of file IShowerTool.h.


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