00001 #ifndef TAUREC_TAUSHOTFINDER_H
00002 #define TAUREC_TAUSHOTFINDER_H
00003
00004
00005
00006
00007
00008 #include "GaudiKernel/ToolHandle.h"
00009 #include "tauRecTools/TauRecToolBase.h"
00010 #include "xAODPFlow/PFOAuxContainer.h"
00011 #include "xAODCaloEvent/CaloClusterAuxContainer.h"
00012
00013
00014
00015 class CaloDetDescrManager;
00016 class CaloCell_ID;
00017 class IHadronicCalibrationTool;
00018
00019
00020
00021
00022
00023
00024
00033 class TauShotFinder : virtual public TauRecToolBase {
00034 public:
00035 TauShotFinder(const std::string& name);
00036 ASG_TOOL_CLASS2(TauShotFinder, TauRecToolBase, ITauToolBase);
00037 virtual ~TauShotFinder();
00038
00039 virtual StatusCode initialize();
00040 virtual StatusCode eventInitialize();
00041 virtual StatusCode execute(xAOD::TauJet& pTau);
00042 virtual StatusCode eventFinalize();
00043 virtual StatusCode finalize();
00044
00045 virtual void print() const { }
00046
00047
00048 private:
00049
00051 ToolHandle<IHadronicCalibrationTool> m_caloWeightTool;
00052
00054 std::string m_caloCellContainerName;
00056 xAOD::CaloClusterContainer* m_shotClusterContainer;
00057 std::string m_shotClusterContainerName;
00058
00060 xAOD::PFOContainer* m_PFOShotContainer;
00061 std::string m_shotPFOContainerName;
00062 xAOD::PFOAuxContainer* m_PFOShotAuxStore;
00063
00064
00066 const CaloDetDescrManager* m_calo_dd_man;
00067 const CaloCell_ID* m_calo_id;
00068
00070
00071
00072
00073
00074
00075
00076
00077
00078
00079
00080
00081
00082
00084 struct ptSort
00085 {
00086 ptSort( const TauShotFinder& info );
00087 const TauShotFinder& m_info;
00088 bool operator()( const CaloCell* c1, const CaloCell* c2 );
00089 };
00090
00092 std::vector<const CaloCell*> getNeighbours(const CaloCellContainer*,const CaloCell*,int );
00093
00094 void addNeighbours(const CaloCellContainer*,
00095 const CaloCell* cell,
00096 std::vector<const CaloCell*>& cells,
00097 int depth,
00098 int maxDepth,
00099 bool next);
00100
00101 bool isPhiNeighbour(IdentifierHash cell1Hash, IdentifierHash cell2Hash, bool next);
00102
00104 float getEtaBin(float );
00105
00107
00108
00110 float getNPhotons(int ,
00111 float ,
00112 float );
00113
00114
00116
00117
00118
00119
00120
00121
00122
00123
00124 int m_nCellsInEta;
00125
00126
00127 std::vector<float> m_minPtCut;
00128 std::vector<float> m_autoDoubleShotCut;
00129 std::vector<float> m_mergedBDTScoreCut;
00130
00131
00132 float m_pt1;
00133 float m_pt3;
00134 float m_pt5;
00135
00136
00137
00138
00139
00140
00141
00142
00143
00144
00145
00146
00147
00148
00149
00150
00151
00152
00153
00154
00155
00156
00157
00158
00159 };
00160
00161 #endif
00162