.. _program_listing_file_xAODAnaHelpers_PhotonHistsAlgo.h: Program Listing for File PhotonHistsAlgo.h ========================================== |exhale_lsh| :ref:`Return to documentation for file ` (``xAODAnaHelpers/PhotonHistsAlgo.h``) .. |exhale_lsh| unicode:: U+021B0 .. UPWARDS ARROW WITH TIP LEFTWARDS .. code-block:: cpp #ifndef xAODAnaHelpers_PhotonHistsAlgo_H #define xAODAnaHelpers_PhotonHistsAlgo_H #include "xAODAnaHelpers/IParticleHistsAlgo.h" class PhotonHistsAlgo : public IParticleHistsAlgo { // put your configuration variables here as public variables. // that way they can be set directly from CINT and python. public: // variables that don't get filled at submission time should be // protected from being send from the submission node to the worker // node (done by the //!) public: // Tree *myTree; //! // TH1 *myHist; //! // this is a standard constructor PhotonHistsAlgo (); // these are the functions inherited from Algorithm virtual EL::StatusCode setupJob (EL::Job& job); virtual EL::StatusCode execute (); // these are the functions not inherited from Algorithm virtual EL::StatusCode AddHists( std::string name ); // this is needed to distribute the algorithm to the workers ClassDef(PhotonHistsAlgo, 1); }; #endif