|
Gaudi Framework, version v23r6 |
| Home | Generated: Wed Jan 30 2013 |
Templated base class providing common histogramming methods for GaudiAlgorithm and GaudiTool like classes. More...
#include <GaudiAlg/GaudiHistos.h>


Public Types | |
| typedef GaudiAlg::HistoID | HistoID |
| the actual type for histogram identifier | |
| typedef GaudiAlg::Histo1DMapID | Histo1DMapID |
| the actual type for (ID)->(1D histogram) mapping | |
| typedef GaudiAlg::Histo1DMapTitle | Histo1DMapTitle |
| the actual type for title->(1D histogram) mapping | |
| typedef GaudiAlg::Histo2DMapID | Histo2DMapID |
| the actual type for (ID)->(2D histogram) mapping | |
| typedef GaudiAlg::Histo2DMapTitle | Histo2DMapTitle |
| the actual type for title->(2D histogram) mapping | |
| typedef GaudiAlg::Histo3DMapID | Histo3DMapID |
| the actual type for (ID)->(3D histogram) mapping | |
| typedef GaudiAlg::Histo3DMapTitle | Histo3DMapTitle |
| the actual type for title->(3D histogram) mapping | |
| typedef GaudiAlg::Profile1DMapID | Profile1DMapID |
| the actual type for (ID)->(1D profile histogram) mapping | |
| typedef GaudiAlg::Profile1DMapTitle | Profile1DMapTitle |
| the actual type for title->(1D profile histogram) mapping | |
| typedef GaudiAlg::Profile2DMapID | Profile2DMapID |
| the actual type for (ID)->(2D profile histogram) mapping | |
| typedef GaudiAlg::Profile2DMapTitle | Profile2DMapTitle |
| the actual type for title->(2D profile histogram) mapping | |
| typedef GaudiAlg::HistoBinEdges | HistoBinEdges |
| Edges for variable binning. | |
Public Member Functions | |
| AIDA::IHistogram1D * | plot1D (const double value, const std::string &title, const double low, const double high, const unsigned long bins=100, const double weight=1.0) const |
| fill the 1D histogram (book on demand) | |
| AIDA::IHistogram1D * | plot (const double value, const std::string &title, const double low, const double high, const unsigned long bins=100, const double weight=1.0) const |
| fill the 1D histogram (book on demand) | |
| AIDA::IHistogram1D * | plot1D (const double value, const Gaudi::Histo1DDef &hdef, const double weight=1.0) const |
| fill the 1D histogram (book on demand) | |
| AIDA::IHistogram1D * | plot (const double value, const Gaudi::Histo1DDef &hdef, const double weight=1.0) const |
| fill the 1D histogram (book on demand) | |
| AIDA::IHistogram1D * | plot1D (const double value, const HistoID &ID, const std::string &title, const double low, const double high, const unsigned long bins=100, const double weight=1.0) const |
| fill the 1D histogram with forced ID assignment (book on demand) | |
| AIDA::IHistogram1D * | plot (const double value, const HistoID &ID, const std::string &title, const double low, const double high, const unsigned long bins=100, const double weight=1.0) const |
| fill the 1D histogram with forced ID assignment (book on demand) | |
| AIDA::IHistogram1D * | plot1D (const double value, const HistoID &ID, const Gaudi::Histo1DDef &hdef, const double weight=1.0) const |
| fill the 1D histogram with forced ID assignment (book on demand) | |
| AIDA::IHistogram1D * | plot (const double value, const HistoID &ID, const Gaudi::Histo1DDef &hdef, const double weight=1.0) const |
| fill the 1D histogram (book on demand) | |
| template<class FUNCTION , class OBJECT > | |
| AIDA::IHistogram1D * | plot (const FUNCTION &func, OBJECT first, OBJECT last, const std::string &title, const double low, const double high, const unsigned long bins=100) const |
| fill the 1D histogram with information from [first,last) sequence | |
| template<class FUNCTION , class OBJECT > | |
| AIDA::IHistogram1D * | plot (const FUNCTION &func, OBJECT first, OBJECT last, const HistoID &ID, const std::string &title, const double low, const double high, const unsigned long bins=100) const |
| fill the 1D histogram with forced ID and information from [first,last) sequence | |
| template<class FUNCTION , class OBJECT , class WEIGHT > | |
| AIDA::IHistogram1D * | plot (const FUNCTION &func, OBJECT first, OBJECT last, const std::string &title, const double low, const double high, const unsigned long bins, const WEIGHT &weight) const |
| book and fill the 1D histogram with information from [first,last) sequence with given weight | |
| template<class FUNCTION , class OBJECT , class WEIGHT > | |
| AIDA::IHistogram1D * | plot (const FUNCTION &func, OBJECT first, OBJECT last, const HistoID &ID, const std::string &title, const double low, const double high, const unsigned long bins, const WEIGHT &weight) const |
| book and fill the 1D histogram with forced ID and information from [first,last) sequence with given weight | |
| AIDA::IHistogram1D * | plot1D (const double value, const std::string &title, const HistoBinEdges &edges, const double weight=1.0) const |
| Fill the 1D variable binning histogram (book on demand) | |
| AIDA::IHistogram1D * | plot1D (const double value, const HistoID &ID, const std::string &title, const HistoBinEdges &edges, const double weight=1.0) const |
| fill the 1D variable binning histogram with forced ID assignment (book on demand) | |
| AIDA::IHistogram2D * | plot2D (const double valueX, const double valueY, const std::string &title, const double lowX, const double highX, const double lowY, const double highY, const unsigned long binsX=50, const unsigned long binsY=50, const double weight=1.0) const |
| fill the 2D histogram (book on demand) | |
| AIDA::IHistogram2D * | plot2D (const double valueX, const double valueY, const HistoID &ID, const std::string &title, const double lowX, const double highX, const double lowY, const double highY, const unsigned long binsX=50, const unsigned long binsY=50, const double weight=1.0) const |
| fill the 2D histogram with forced ID assignment (book on demand) | |
| AIDA::IHistogram2D * | plot2D (const double valueX, const double valueY, const std::string &title, const HistoBinEdges &edgesX, const HistoBinEdges &edgesY, const double weight=1.0) const |
| Fill the 2D variable binning histogram (book on demand) | |
| AIDA::IHistogram2D * | plot2D (const double valueX, const double valueY, const HistoID &ID, const std::string &title, const HistoBinEdges &edgesX, const HistoBinEdges &edgesY, const double weight=1.0) const |
| fill the 2D variable histogram with forced ID assignment (book on demand) | |
| AIDA::IHistogram3D * | plot3D (const double valueX, const double valueY, const double valueZ, const std::string &title, const double lowX, const double highX, const double lowY, const double highY, const double lowZ, const double highZ, const unsigned long binsX=10, const unsigned long binsY=10, const unsigned long binsZ=10, const double weight=1.0) const |
| fill the 3D histogram (book on demand) | |
| AIDA::IHistogram3D * | plot3D (const double valueX, const double valueY, const double valueZ, const HistoID &ID, const std::string &title, const double lowX, const double highX, const double lowY, const double highY, const double lowZ, const double highZ, const unsigned long binsX=10, const unsigned long binsY=10, const unsigned long binsZ=10, const double weight=1.0) const |
| fill the 3D histogram with forced ID assignment (book on demand) | |
| AIDA::IHistogram3D * | plot3D (const double valueX, const double valueY, const double valueZ, const std::string &title, const HistoBinEdges &edgesX, const HistoBinEdges &edgesY, const HistoBinEdges &edgesZ, const double weight=1.0) const |
| Fill the 3D variable binning histogram (book on demand) | |
| AIDA::IHistogram3D * | plot3D (const double valueX, const double valueY, const double valueZ, const HistoID &ID, const std::string &title, const HistoBinEdges &edgesX, const HistoBinEdges &edgesY, const HistoBinEdges &edgesZ, const double weight=1.0) const |
| fill the 3D histogram with forced ID assignment (book on demand) | |
| AIDA::IProfile1D * | profile1D (const double valueX, const double valueY, const std::string &title, const double lowX, const double highX, const unsigned long binsX=100, const std::string &opt="", const double lowY=-std::numeric_limits< double >::max(), const double highY=std::numeric_limits< double >::max(), const double weight=1.0) const |
| fill the 1D profile histogram (book on demand) | |
| AIDA::IProfile1D * | profile1D (const double valueX, const double valueY, const HistoID &ID, const std::string &title, const double lowX, const double highX, const unsigned long binsX=100, const std::string &opt="", const double lowY=-std::numeric_limits< double >::max(), const double highY=std::numeric_limits< double >::max(), const double weight=1.0) const |
| fill the 1D profile histogram with forced ID assignment (book on demand) | |
| AIDA::IProfile1D * | profile1D (const double valueX, const double valueY, const std::string &title, const HistoBinEdges &edges, const double weight=1.0) const |
| fill the 1D variable binning profile histogram (book on demand) | |
| AIDA::IProfile1D * | profile1D (const double valueX, const double valueY, const HistoID &ID, const std::string &title, const HistoBinEdges &edges, const double weight=1.0) const |
| fill the 1D variable binning profile histogram with forced ID assignment (book on demand) | |
| AIDA::IProfile2D * | profile2D (const double valueX, const double valueY, const double valueZ, const std::string &title, const double lowX, const double highX, const double lowY, const double highY, const unsigned long binsX=50, const unsigned long binsY=50, const double weight=1.0) const |
| fill the 2D profile histogram (book on demand) | |
| AIDA::IProfile2D * | profile2D (const double valueX, const double valueY, const double valueZ, const HistoID &ID, const std::string &title, const double lowX, const double highX, const double lowY, const double highY, const unsigned long binsX=50, const unsigned long binsY=50, const double weight=1.0) const |
| fill the 2D profile histogram with forced ID assignment (book on demand) | |
| AIDA::IProfile2D * | profile2D (const double valueX, const double valueY, const double valueZ, const std::string &title, const HistoBinEdges &edgesX, const HistoBinEdges &edgesY, const double weight=1.0) const |
| fill the 2D variable binning profile histogram (book on demand) | |
| AIDA::IProfile2D * | profile2D (const double valueX, const double valueY, const double valueZ, const HistoID &ID, const std::string &title, const HistoBinEdges &edgesX, const HistoBinEdges &edgesY, const double weight=1.0) const |
| fill the 2D variable binning profile histogram with forced ID assignment (book on demand) | |
| AIDA::IHistogram1D * | book1D (const std::string &title, const double low=0, const double high=100, const unsigned long bins=100) const |
| book the 1D histogram | |
| AIDA::IHistogram1D * | book (const std::string &title, const double low=0, const double high=100, const unsigned long bins=100) const |
| book the 1D histogram | |
| AIDA::IHistogram1D * | book (const Gaudi::Histo1DDef &hdef) const |
| book the 1D histogram | |
| AIDA::IHistogram1D * | book1D (const HistoID &ID, const std::string &title, const double low=0, const double high=100, const unsigned long bins=100) const |
| book the 1D histogram with forced ID | |
| AIDA::IHistogram1D * | book (const HistoID &ID, const std::string &title, const double low=0, const double high=100, const unsigned long bins=100) const |
| book the 1D histogram with forced ID | |
| AIDA::IHistogram1D * | book (const HistoID &ID, const Gaudi::Histo1DDef &hdef) const |
| book the 1D histogram with forced ID | |
| AIDA::IHistogram1D * | book1D (const std::string &title, const HistoBinEdges &edges) const |
| book the 1D variable binning histogram | |
| AIDA::IHistogram1D * | book1D (const HistoID &ID, const std::string &title, const HistoBinEdges &edges) const |
| book the 1D variable binning histogram with given ID | |
| AIDA::IHistogram2D * | book2D (const std::string &title, const double lowX=0, const double highX=100, const unsigned long binsX=50, const double lowY=0, const double highY=100, const unsigned long binsY=50) const |
| book the 2D histogram | |
| AIDA::IHistogram2D * | book2D (const HistoID &ID, const std::string &title, const double lowX=0, const double highX=100, const unsigned long binsX=50, const double lowY=0, const double highY=100, const unsigned long binsY=50) const |
| book the 2D histogram with forced ID | |
| AIDA::IHistogram2D * | book2D (const std::string &title, const HistoBinEdges &edgesX, const HistoBinEdges &edgesY) const |
| book the 2D variable binning histogram | |
| AIDA::IHistogram2D * | book2D (const HistoID &ID, const std::string &title, const HistoBinEdges &edgesX, const HistoBinEdges &edgesY) const |
| book the 2D variable binning histogram with given ID | |
| AIDA::IHistogram3D * | book3D (const std::string &title, const double lowX=0, const double highX=100, const unsigned long binsX=10, const double lowY=0, const double highY=100, const unsigned long binsY=10, const double lowZ=0, const double highZ=100, const unsigned long binsZ=10) const |
| book the 3D histogram | |
| AIDA::IHistogram3D * | book3D (const HistoID &ID, const std::string &title, const double lowX=0, const double highX=100, const unsigned long binsX=10, const double lowY=0, const double highY=100, const unsigned long binsY=10, const double lowZ=0, const double highZ=100, const unsigned long binsZ=10) const |
| book the 3D histogram with forced ID | |
| AIDA::IHistogram3D * | book3D (const std::string &title, const HistoBinEdges &edgesX, const HistoBinEdges &edgesY, const HistoBinEdges &edgesZ) const |
| book the 3D variable binning histogram | |
| AIDA::IHistogram3D * | book3D (const HistoID &ID, const std::string &title, const HistoBinEdges &edgesX, const HistoBinEdges &edgesY, const HistoBinEdges &edgesZ) const |
| book the 3D variable binning histogram with given ID | |
| AIDA::IProfile1D * | bookProfile1D (const std::string &title, const double low=0, const double high=100, const unsigned long bins=100, const std::string &opt="", const double lowY=-std::numeric_limits< double >::max(), const double highY=std::numeric_limits< double >::max()) const |
| book the 1D profile histogram | |
| AIDA::IProfile1D * | bookProfile1D (const HistoID &ID, const std::string &title, const double low=0, const double high=100, const unsigned long bins=100, const std::string &opt="", const double lowY=-std::numeric_limits< double >::max(), const double highY=std::numeric_limits< double >::max()) const |
| book the 1D profile histogram | |
| AIDA::IProfile1D * | bookProfile1D (const std::string &title, const HistoBinEdges &edges) const |
| book the 1D profile histogram | |
| AIDA::IProfile1D * | bookProfile1D (const HistoID &ID, const std::string &title, const HistoBinEdges &edges) const |
| book the 1D profile histogram | |
| AIDA::IProfile2D * | bookProfile2D (const std::string &title, const double lowX=0, const double highX=100, const unsigned long binsX=50, const double lowY=0, const double highY=100, const unsigned long binsY=50) const |
| book the 2D profile histogram | |
| AIDA::IProfile2D * | bookProfile2D (const HistoID &ID, const std::string &title, const double lowX=0, const double highX=100, const unsigned long binsX=50, const double lowY=0, const double highY=100, const unsigned long binsY=50) const |
| book the 2D profile histogram with forced ID | |
| AIDA::IProfile2D * | bookProfile2D (const std::string &title, const HistoBinEdges &edgesX, const HistoBinEdges &edgesY) const |
| book the 2D profile histogram | |
| AIDA::IProfile2D * | bookProfile2D (const HistoID &ID, const std::string &title, const HistoBinEdges &edgesX, const HistoBinEdges &edgesY) const |
| book the 2D profile histogram with forced ID | |
| AIDA::IHistogram1D * | fill (AIDA::IHistogram1D *histo, const double value, const double weight, const std::string &title="") const |
| fill the 1D histogram with the value and weight | |
| AIDA::IHistogram2D * | fill (AIDA::IHistogram2D *histo, const double valueX, const double valueY, const double weight, const std::string &title="") const |
| fill the 2D histogram with the value and weight | |
| AIDA::IHistogram3D * | fill (AIDA::IHistogram3D *histo, const double valueX, const double valueY, const double valueZ, const double weight, const std::string &title="") const |
| fill the 3D histogram with the value and weight | |
| AIDA::IProfile1D * | fill (AIDA::IProfile1D *histo, const double valueX, const double valueY, const double weight, const std::string &title="") const |
| fill the 1D profile histogram with the values and weight | |
| AIDA::IProfile2D * | fill (AIDA::IProfile2D *histo, const double valueX, const double valueY, const double valueZ, const double weight, const std::string &title="") const |
| fill the 2D profile histogram with the values and weight | |
| AIDA::IHistogram1D * | histo1D (const std::string &title) const |
| access the EXISTING 1D histogram by title return the pointer to existing 1D histogram or NULL | |
| AIDA::IHistogram1D * | histo (const std::string &title) const |
| access the EXISTING 1D histogram by title | |
| AIDA::IHistogram2D * | histo2D (const std::string &title) const |
| access the EXISTING 2D histogram by title return the pointer to existing 2D histogram or NULL | |
| AIDA::IHistogram3D * | histo3D (const std::string &title) const |
| access the EXISTING 3D histogram by title return the pointer to existing 3D histogram or NULL | |
| AIDA::IProfile1D * | profile1D (const std::string &title) const |
| access the EXISTING 1D profile histogram by title return the pointer to existing 1D profile histogram or NULL | |
| AIDA::IProfile2D * | profile2D (const std::string &title) const |
| access the EXISTING 2D profile histogram by title return the pointer to existing 2D profile histogram or NULL | |
| AIDA::IHistogram1D * | histo1D (const HistoID &ID) const |
| access the EXISTING 1D histogram by ID return the pointer to existing 1D histogram or NULL | |
| AIDA::IHistogram1D * | histo (const HistoID &ID) const |
| access the EXISTING 1D histogram by ID | |
| AIDA::IHistogram2D * | histo2D (const HistoID &ID) const |
| access the EXISTING 2D histogram by ID return the pointer to existing 2D histogram or NULL | |
| AIDA::IHistogram3D * | histo3D (const HistoID &ID) const |
| access the EXISTING 3D histogram by ID return the pointer to existing 3D histogram or NULL | |
| AIDA::IProfile1D * | profile1D (const HistoID &ID) const |
| access the EXISTING 1D profile histogram by ID return the pointer to existing 1D profile histogram or NULL | |
| AIDA::IProfile2D * | profile2D (const HistoID &ID) const |
| access the EXISTING 2D profile histogram by ID return the pointer to existing 2D profile histogram or NULL | |
| bool | histoExists (const std::string &title) const |
| check the existence AND validity of the histogram with given title | |
| bool | histoExists (const HistoID &ID) const |
| check the existence AND validity of the histogram with given title | |
| unsigned int | totalNumberOfHistos () const |
| Returns the total number of histograms (of all types) currently booked. | |
| bool | produceHistos () const |
| get the flag for histogram production (property "HistoProduce") | |
| bool | fullDetail () const |
| get flag to control output level of histograms | |
| bool | checkForNaN () const |
| get the flag for NaN checks (property "HistoCheckForNan") | |
| bool | splitHistoDir () const |
| get the flag for histogram path split (property "HistoSplitDir") | |
| HistoID::NumericID | histoOffSet () const |
| get the value for histogram offset (property "HistoOffSet") | |
| const std::string & | histoTopDir () const |
| get top-level histogram directory (property "HistoTopDir") | |
| const std::string & | histoDir () const |
| get histogram directory (property "HistoDir") | |
| std::string | histoPath () const |
| get the constructed histogram path | |
| bool | histosPrint () const |
| print histograms at finalization ? | |
| bool | useNumericAutoIDs () const |
| Use old style sequencial numerical automatically assigned IDs ? | |
| int | printHistos (const MSG::Level level=MSG::ALWAYS) const |
| perform the actual printout of histograms | |
| const Histo1DMapTitle & | histo1DMapTitle () const |
| get access to the map of all 1D histograms indexed via their title | |
| const Histo1DMapID & | histo1DMapID () const |
| get access to the map of all 1D histograms index via ID | |
| const Histo2DMapTitle & | histo2DMapTitle () const |
| get access to the map of all 2D histograms indexed via their title | |
| const Histo2DMapID & | histo2DMapID () const |
| get access to the map of 2D histograms index via ID | |
| const Histo3DMapTitle & | histo3DMapTitle () const |
| get access to the map of all 3D histograms indexed via their title | |
| const Histo3DMapID & | histo3DMapID () const |
| get access to the map of all 3D histograms index via a ID | |
| const Profile1DMapTitle & | profile1DMapTitle () const |
| get access to the map of all 1D profile histograms indexed via their title | |
| const Profile1DMapID & | profile1DMapID () const |
| get access to the map of 1D profile histograms index via a ID | |
| const Profile2DMapTitle & | profile2DMapTitle () const |
| get access to the map of all 2D profile histograms indexed via their title | |
| const Profile2DMapID & | profile2DMapID () const |
| get access to the map of 2D profile histograms index via a ID | |
| void | setProduceHistos (const bool val) |
| set the flag for histogram production (property "HistoProduce") | |
| void | setFullDetail (const bool val) |
| set flag to control output level of histograms | |
| void | setCheckForNaN (const bool val) |
| set the flag for NaN checks (property "HistoCheckForNan") | |
| void | setSplitHistoDir (const bool val) |
| set the flag for histogram path split (property "HistoSplitDir") | |
| void | setHistoOffSet (const HistoID::NumericID val) |
| set a value for histogram offset (property "HistoOffSet" | |
| void | setHistoTopDir (const std::string &val) |
| set top-level histogram directory (property "HistoTopDir") | |
| void | setHistoDir (const std::string &val) |
| set histogram directory (property "HistoDir") | |
| GaudiHistos (const std::string &name, ISvcLocator *pSvcLocator) | |
| Algorithm constructor. | |
| GaudiHistos (const std::string &type, const std::string &name, const IInterface *parent) | |
| Tool constructor. | |
| virtual | ~GaudiHistos () |
| Destructor. | |
Protected Member Functions | |
| virtual StatusCode | initialize () |
| standard initialization method | |
| virtual StatusCode | finalize () |
| standard finalization method | |
| std::string | convertTitleToID (const std::string &title) const |
| Create an ID string from a title string. | |
Private Member Functions | |
| bool | noHistos () const |
| Check if all histogram maps are empty. | |
| void | initGaudiHistosConstructor () |
| Constructor initialisation and job options. | |
| void | monitorHisto (const AIDA::IBaseHistogram *hist, const HistoID &ID) const |
| Declare a histogram to the monitor service. | |
| void | newHistoID (const std::string &title, HistoID &ID) const |
| Create a new histogram ID using the given title. | |
| void | stringSearchReplace (std::string &title, const std::string &A, const std::string &B) const |
| Searches 'title' for all instancies of 'A' and replaces them with 'B'. | |
| void | printHistoHandler (Property &) |
| the handler for "HistoPrint" property | |
Private Attributes | |
| bool | m_produceHistos |
| flag to SWITCH ON/SWITCH OFF the histogrm fillling and booking | |
| bool | m_fullDetail |
| flag to control output level of histograms | |
| bool | m_checkForNaN |
| flag to control check for Nan/Finite while filling the histogram | |
| bool | m_splitHistoDir |
| split histogram directory name (very useful for Hbook) | |
| HistoID::NumericID | m_histoOffSet |
| general histogram ID offset (only works for automatically assigned numeric IDs) | |
| std::string | m_histoTopDir |
| histogram top level directory | |
| std::string | m_histoDir |
| histogram directory | |
| bool | m_histosPrint |
| print histograms at finalization | |
| bool | m_declareMoniHists |
| Flag to turn on/off the registration of histograms to the Monitoring Service. | |
| Histo1DMapTitle | m_histo1DMapTitle |
| the actual storage/access of 1D histograms by unique title | |
| Histo1DMapID | m_histo1DMapID |
| the actual storage/access of 1D histograms by unique ID | |
| Histo2DMapTitle | m_histo2DMapTitle |
| the actual storage/access of 2D histograms by unique title | |
| Histo2DMapID | m_histo2DMapID |
| the actual storage/access of 2D histograms by unique ID | |
| Histo3DMapTitle | m_histo3DMapTitle |
| the actual storage/access of 3D histograms by unique title | |
| Histo3DMapID | m_histo3DMapID |
| the actual storage/access of 3D histograms by unique ID | |
| Profile1DMapTitle | m_profile1DMapTitle |
| the actual storage/access of 1D profile histograms by unique title | |
| Profile1DMapID | m_profile1DMapID |
| the actual storage/access of 1D profile histograms by unique ID | |
| Profile2DMapTitle | m_profile2DMapTitle |
| the actual storage/access of 2D profile histograms by unique title | |
| Profile2DMapID | m_profile2DMapID |
| the actual storage/access of 2D profile histograms by unique ID | |
| std::string | m_histo1DTableFormat |
| format for printout of 1D-histograms as a table | |
| std::string | m_histo1DTableFormatShort |
| format for printout of 1D-histograms as a table | |
| std::string | m_histo1DTableHeader |
| the header for the table of 1-D historgrams | |
| bool | m_useNumericAutoIDs |
| Flag to switch back to the old style sequencial numerical automatic IDs. | |
| std::map< std::string, std::string > | m_idReplaceInfo |
| Map of strings to search and replace when using the title as the basis of automatically generated literal IDs. | |
Templated base class providing common histogramming methods for GaudiAlgorithm and GaudiTool like classes.
Definition at line 51 of file GaudiHistos.h.
| typedef GaudiAlg::Histo1DMapID GaudiHistos< PBASE >::Histo1DMapID |
the actual type for (ID)->(1D histogram) mapping
Definition at line 59 of file GaudiHistos.h.
| typedef GaudiAlg::Histo1DMapTitle GaudiHistos< PBASE >::Histo1DMapTitle |
the actual type for title->(1D histogram) mapping
Definition at line 61 of file GaudiHistos.h.
| typedef GaudiAlg::Histo2DMapID GaudiHistos< PBASE >::Histo2DMapID |
the actual type for (ID)->(2D histogram) mapping
Definition at line 64 of file GaudiHistos.h.
| typedef GaudiAlg::Histo2DMapTitle GaudiHistos< PBASE >::Histo2DMapTitle |
the actual type for title->(2D histogram) mapping
Definition at line 66 of file GaudiHistos.h.
| typedef GaudiAlg::Histo3DMapID GaudiHistos< PBASE >::Histo3DMapID |
the actual type for (ID)->(3D histogram) mapping
Definition at line 69 of file GaudiHistos.h.
| typedef GaudiAlg::Histo3DMapTitle GaudiHistos< PBASE >::Histo3DMapTitle |
the actual type for title->(3D histogram) mapping
Definition at line 71 of file GaudiHistos.h.
| typedef GaudiAlg::HistoBinEdges GaudiHistos< PBASE >::HistoBinEdges |
Edges for variable binning.
Definition at line 84 of file GaudiHistos.h.
| typedef GaudiAlg::HistoID GaudiHistos< PBASE >::HistoID |
the actual type for histogram identifier
Definition at line 56 of file GaudiHistos.h.
| typedef GaudiAlg::Profile1DMapID GaudiHistos< PBASE >::Profile1DMapID |
the actual type for (ID)->(1D profile histogram) mapping
Definition at line 74 of file GaudiHistos.h.
| typedef GaudiAlg::Profile1DMapTitle GaudiHistos< PBASE >::Profile1DMapTitle |
the actual type for title->(1D profile histogram) mapping
Definition at line 76 of file GaudiHistos.h.
| typedef GaudiAlg::Profile2DMapID GaudiHistos< PBASE >::Profile2DMapID |
the actual type for (ID)->(2D profile histogram) mapping
Definition at line 79 of file GaudiHistos.h.
| typedef GaudiAlg::Profile2DMapTitle GaudiHistos< PBASE >::Profile2DMapTitle |
the actual type for title->(2D profile histogram) mapping
Definition at line 81 of file GaudiHistos.h.
| GaudiHistos< PBASE >::GaudiHistos | ( | const std::string & | name, |
| ISvcLocator * | pSvcLocator | ||
| ) |
Algorithm constructor.
| GaudiHistos< PBASE >::GaudiHistos | ( | const std::string & | type, |
| const std::string & | name, | ||
| const IInterface * | parent | ||
| ) |
Tool constructor.
|
inlinevirtual |
|
inline |
book the 1D histogram
Wrapper method for the equivalent book1D method. Retained for backwards compatibility, please use book1D instead.
| title | histogram title (must be unique within the algorithm) |
| low | low limit for histogram |
| high | high limit for histogram |
| bins | number of bins |
Definition at line 2032 of file GaudiHistos.h.
| AIDA::IHistogram1D * GaudiHistos< PBASE >::book | ( | const Gaudi::Histo1DDef & | hdef | ) | const |
book the 1D histogram
The histogram will be assigned a unique identifier
| hdef | histogram description/definition |
Definition at line 186 of file GaudiHistos_1DFixedBinning.icpp.
|
inline |
book the 1D histogram with forced ID
Wrapper method for the equivalent book1D method. Retained for backwards compatibility, please use book1D instead.
| ID | unique histogram ID |
| title | histogram title (must be unique within the algorithm) |
| low | low limit for histogram |
| high | high limit for histogram |
| bins | number of bins |
Definition at line 2082 of file GaudiHistos.h.
|
inline |
book the 1D histogram with forced ID
| ID | unique histogram ID |
| hdef | histogram descriptor |
Definition at line 199 of file GaudiHistos_1DFixedBinning.icpp.
| AIDA::IHistogram1D * GaudiHistos< PBASE >::book1D | ( | const std::string & | title, |
| const double | low = 0, |
||
| const double | high = 100, |
||
| const unsigned long | bins = 100 |
||
| ) | const |
book the 1D histogram
The histogram will be assigned a unique identifier
| title | histogram title (must be unique within the algorithm) |
| low | low limit for histogram |
| high | high limit for histogram |
| bins | number of bins |
Definition at line 8 of file GaudiHistos_1DFixedBinning.icpp.
| AIDA::IHistogram1D * GaudiHistos< PBASE >::book1D | ( | const HistoID & | ID, |
| const std::string & | title, | ||
| const double | low = 0, |
||
| const double | high = 100, |
||
| const unsigned long | bins = 100 |
||
| ) | const |
book the 1D histogram with forced ID
| ID | unique histogram ID |
| title | histogram title (must be unique within the algorithm) |
| low | low limit for histogram |
| high | high limit for histogram |
| bins | number of bins |
Definition at line 33 of file GaudiHistos_1DFixedBinning.icpp.
| AIDA::IHistogram1D * GaudiHistos< PBASE >::book1D | ( | const std::string & | title, |
| const HistoBinEdges & | edges | ||
| ) | const |
book the 1D variable binning histogram
The histogram will be assigned a unique identifier
| title | histogram title (must be unique within the algorithm) |
| edges | The histogram bin edges |
Definition at line 8 of file GaudiHistos_1DVariableBinning.icpp.
| AIDA::IHistogram1D * GaudiHistos< PBASE >::book1D | ( | const HistoID & | ID, |
| const std::string & | title, | ||
| const HistoBinEdges & | edges | ||
| ) | const |
book the 1D variable binning histogram with given ID
| ID | unique histogram ID |
| title | histogram title (must be unique within the algorithm) |
| edges | The histogram bin edges |
Definition at line 31 of file GaudiHistos_1DVariableBinning.icpp.
| AIDA::IHistogram2D * GaudiHistos< PBASE >::book2D | ( | const std::string & | title, |
| const double | lowX = 0, |
||
| const double | highX = 100, |
||
| const unsigned long | binsX = 50, |
||
| const double | lowY = 0, |
||
| const double | highY = 100, |
||
| const unsigned long | binsY = 50 |
||
| ) | const |
book the 2D histogram
The histogram will be assigned a unique identifier
| title | histogram title (must be unique within the algorithm) |
| lowX | low x limit for histogram |
| highX | high x limit for histogram |
| binsX | number of bins in x |
| lowY | low y limit for histogram |
| highY | high y limit for histogram |
| binsY | number of bins in y |
Definition at line 8 of file GaudiHistos_2DFixedBinning.icpp.
| AIDA::IHistogram2D * GaudiHistos< PBASE >::book2D | ( | const HistoID & | ID, |
| const std::string & | title, | ||
| const double | lowX = 0, |
||
| const double | highX = 100, |
||
| const unsigned long | binsX = 50, |
||
| const double | lowY = 0, |
||
| const double | highY = 100, |
||
| const unsigned long | binsY = 50 |
||
| ) | const |
book the 2D histogram with forced ID
| ID | unique histogram ID |
| title | histogram title (must be unique within the algorithm) |
| low | low limit for histogram |
| high | high limit for histogram |
| bins | number of bins |
Definition at line 36 of file GaudiHistos_2DFixedBinning.icpp.
| AIDA::IHistogram2D * GaudiHistos< PBASE >::book2D | ( | const std::string & | title, |
| const HistoBinEdges & | edgesX, | ||
| const HistoBinEdges & | edgesY | ||
| ) | const |
book the 2D variable binning histogram
The histogram will be assigned a unique identifier
| title | histogram title (must be unique within the algorithm) |
| edgesX | The histogram x bin edges |
| edgesY | The histogram y bin edges |
Definition at line 8 of file GaudiHistos_2DVariableBinning.icpp.
| AIDA::IHistogram2D * GaudiHistos< PBASE >::book2D | ( | const HistoID & | ID, |
| const std::string & | title, | ||
| const HistoBinEdges & | edgesX, | ||
| const HistoBinEdges & | edgesY | ||
| ) | const |
book the 2D variable binning histogram with given ID
| ID | unique histogram ID |
| title | histogram title (must be unique within the algorithm) |
| edgesX | The histogram x bin edges |
| edgesY | The histogram y bin edges |
Definition at line 32 of file GaudiHistos_2DVariableBinning.icpp.
| AIDA::IHistogram3D * GaudiHistos< PBASE >::book3D | ( | const std::string & | title, |
| const double | lowX = 0, |
||
| const double | highX = 100, |
||
| const unsigned long | binsX = 10, |
||
| const double | lowY = 0, |
||
| const double | highY = 100, |
||
| const unsigned long | binsY = 10, |
||
| const double | lowZ = 0, |
||
| const double | highZ = 100, |
||
| const unsigned long | binsZ = 10 |
||
| ) | const |
book the 3D histogram
The histogram will be assigned a unique identifier
| title | histogram title (must be unique within the algorithm) |
| lowX | low x limit for histogram |
| highX | high x limit for histogram |
| binsX | number of bins in x |
| lowY | low y limit for histogram |
| highY | high y limit for histogram |
| binsY | number of bins in y |
| lowZ | low y limit for histogram |
| highZ | high y limit for histogram |
| binsZ | number of bins in y |
Definition at line 8 of file GaudiHistos_3DFixedBinning.icpp.
| AIDA::IHistogram3D * GaudiHistos< PBASE >::book3D | ( | const HistoID & | ID, |
| const std::string & | title, | ||
| const double | lowX = 0, |
||
| const double | highX = 100, |
||
| const unsigned long | binsX = 10, |
||
| const double | lowY = 0, |
||
| const double | highY = 100, |
||
| const unsigned long | binsY = 10, |
||
| const double | lowZ = 0, |
||
| const double | highZ = 100, |
||
| const unsigned long | binsZ = 10 |
||
| ) | const |
book the 3D histogram with forced ID
| ID | unique histogram ID |
| title | histogram title (must be unique within the algorithm) |
| lowX | low x limit for histogram |
| highX | high x limit for histogram |
| binsX | number of bins in x |
| lowY | low y limit for histogram |
| highY | high y limit for histogram |
| binsY | number of bins in y |
| lowZ | low y limit for histogram |
| highZ | high y limit for histogram |
| binsZ | number of bins in y |
Definition at line 42 of file GaudiHistos_3DFixedBinning.icpp.
| AIDA::IHistogram3D * GaudiHistos< PBASE >::book3D | ( | const std::string & | title, |
| const HistoBinEdges & | edgesX, | ||
| const HistoBinEdges & | edgesY, | ||
| const HistoBinEdges & | edgesZ | ||
| ) | const |
book the 3D variable binning histogram
The histogram will be assigned a unique identifier
| title | histogram title (must be unique within the algorithm) |
| edgesX | The histogram x bin edges |
| edgesY | The histogram y bin edges |
| edgesZ | The histogram z bin edges |
Definition at line 8 of file GaudiHistos_3DVariableBinning.icpp.
| AIDA::IHistogram3D * GaudiHistos< PBASE >::book3D | ( | const HistoID & | ID, |
| const std::string & | title, | ||
| const HistoBinEdges & | edgesX, | ||
| const HistoBinEdges & | edgesY, | ||
| const HistoBinEdges & | edgesZ | ||
| ) | const |
book the 3D variable binning histogram with given ID
| ID | unique histogram ID |
| title | histogram title (must be unique within the algorithm) |
| edgesX | The histogram x bin edges |
| edgesY | The histogram y bin edges |
| edgesZ | The histogram z bin edges |
Definition at line 33 of file GaudiHistos_3DVariableBinning.icpp.
| AIDA::IProfile1D * GaudiHistos< PBASE >::bookProfile1D | ( | const std::string & | title, |
| const double | low = 0, |
||
| const double | high = 100, |
||
| const unsigned long | bins = 100, |
||
| const std::string & | opt = "", |
||
| const double | lowY = -std::numeric_limits<double>::max(), |
||
| const double | highY = std::numeric_limits<double>::max() |
||
| ) | const |
book the 1D profile histogram
The histogram will be assigned a unique identifier
| title | histogram title (must be unique within the algorithm) |
| low | low limit for histogram |
| high | high limit for histogram |
| bins | number of bins |
| opt | the options, used for evaluation of errors |
| lowY | the min cut-off for y-values |
| highY | the max cut-off for y-values |
Definition at line 6 of file GaudiHistos_1DProfFixedBinning.icpp.
| AIDA::IProfile1D * GaudiHistos< PBASE >::bookProfile1D | ( | const HistoID & | ID, |
| const std::string & | title, | ||
| const double | low = 0, |
||
| const double | high = 100, |
||
| const unsigned long | bins = 100, |
||
| const std::string & | opt = "", |
||
| const double | lowY = -std::numeric_limits<double>::max(), |
||
| const double | highY = std::numeric_limits<double>::max() |
||
| ) | const |
book the 1D profile histogram
The histogram will be assigned a unique identifier
| title | histogram title (must be unique within the algorithm) |
| edges | The histogram bin edges |
| low | low limit for histogram |
| high | high limit for histogram |
| bins | number of bins |
| opt | the options, used for evaluation of errors |
| lowY | the min cut-off for y-values |
| highY | the max cut-off for y-values |
Definition at line 34 of file GaudiHistos_1DProfFixedBinning.icpp.
| AIDA::IProfile1D * GaudiHistos< PBASE >::bookProfile1D | ( | const std::string & | title, |
| const HistoBinEdges & | edges | ||
| ) | const |
book the 1D profile histogram
The histogram will be assigned a unique identifier
| title | histogram title (must be unique within the algorithm) |
| edges | The histogram bin edges |
Definition at line 6 of file GaudiHistos_1DProfVariableBinning.icpp.
| AIDA::IProfile1D * GaudiHistos< PBASE >::bookProfile1D | ( | const HistoID & | ID, |
| const std::string & | title, | ||
| const HistoBinEdges & | edges | ||
| ) | const |
book the 1D profile histogram
The histogram will be assigned a unique identifier
| title | histogram title (must be unique within the algorithm) |
| edges | The histogram bin edges |
Definition at line 29 of file GaudiHistos_1DProfVariableBinning.icpp.
| AIDA::IProfile2D * GaudiHistos< PBASE >::bookProfile2D | ( | const std::string & | title, |
| const double | lowX = 0, |
||
| const double | highX = 100, |
||
| const unsigned long | binsX = 50, |
||
| const double | lowY = 0, |
||
| const double | highY = 100, |
||
| const unsigned long | binsY = 50 |
||
| ) | const |
book the 2D profile histogram
The histogram will be assigned a unique identifier
| title | histogram title (must be unique within the algorithm) |
| lowX | low x limit for histogram |
| highX | high x limit for histogram |
| binsX | number of bins in x |
| lowY | low y limit for histogram |
| highY | high y limit for histogram |
| binsY | number of bins in y |
Definition at line 6 of file GaudiHistos_2DProfFixedBinning.icpp.
| AIDA::IProfile2D * GaudiHistos< PBASE >::bookProfile2D | ( | const HistoID & | ID, |
| const std::string & | title, | ||
| const double | lowX = 0, |
||
| const double | highX = 100, |
||
| const unsigned long | binsX = 50, |
||
| const double | lowY = 0, |
||
| const double | highY = 100, |
||
| const unsigned long | binsY = 50 |
||
| ) | const |
book the 2D profile histogram with forced ID
| ID | unique histogram ID |
| title | histogram title (must be unique within the algorithm) |
| lowX | low x limit for histogram |
| highX | high x limit for histogram |
| binsX | number of bins in x |
| lowY | low y limit for histogram |
| highY | high y limit for histogram |
| binsY | number of bins in y |
Definition at line 34 of file GaudiHistos_2DProfFixedBinning.icpp.
| AIDA::IProfile2D * GaudiHistos< PBASE >::bookProfile2D | ( | const std::string & | title, |
| const HistoBinEdges & | edgesX, | ||
| const HistoBinEdges & | edgesY | ||
| ) | const |
book the 2D profile histogram
The histogram will be assigned a unique identifier
| title | histogram title (must be unique within the algorithm) |
| edgesX | x bin edges |
| edgesY | y bin edges |
Definition at line 6 of file GaudiHistos_2DProfVariableBinning.icpp.
| AIDA::IProfile2D * GaudiHistos< PBASE >::bookProfile2D | ( | const HistoID & | ID, |
| const std::string & | title, | ||
| const HistoBinEdges & | edgesX, | ||
| const HistoBinEdges & | edgesY | ||
| ) | const |
book the 2D profile histogram with forced ID
| ID | unique histogram ID |
| title | histogram title (must be unique within the algorithm) |
| edgesX | x bin edges |
| edgesY | y bin edges |
Definition at line 30 of file GaudiHistos_2DProfVariableBinning.icpp.
|
inline |
get the flag for NaN checks (property "HistoCheckForNan")
Definition at line 2698 of file GaudiHistos.h.
|
protected |
Create an ID string from a title string.
Definition at line 504 of file GaudiHistos.icpp.
| AIDA::IHistogram1D * GaudiHistos< PBASE >::fill | ( | AIDA::IHistogram1D * | histo, |
| const double | value, | ||
| const double | weight, | ||
| const std::string & | title = "" |
||
| ) | const |
fill the 1D histogram with the value and weight
| histo | 1D histogram to be filled |
| value | value to be put into the histogram |
| weight | weight to be used |
| title | histogram title (to be used for error report) |
Definition at line 105 of file GaudiHistos_1DFixedBinning.icpp.
| AIDA::IHistogram2D * GaudiHistos< PBASE >::fill | ( | AIDA::IHistogram2D * | histo, |
| const double | valueX, | ||
| const double | valueY, | ||
| const double | weight, | ||
| const std::string & | title = "" |
||
| ) | const |
fill the 2D histogram with the value and weight
| histo | 2D histogram to be filled |
| valueX | x value to be put into the histogram |
| valueY | y value to be put into the histogram |
| weight | weight to be used |
| title | histogram title (to be used for error report) |
Definition at line 117 of file GaudiHistos_2DFixedBinning.icpp.
| AIDA::IHistogram3D * GaudiHistos< PBASE >::fill | ( | AIDA::IHistogram3D * | histo, |
| const double | valueX, | ||
| const double | valueY, | ||
| const double | valueZ, | ||
| const double | weight, | ||
| const std::string & | title = "" |
||
| ) | const |
fill the 3D histogram with the value and weight
| histo | 3D histogram to be filled |
| valueX | x value to be put into the histogram |
| valueY | y value to be put into the histogram |
| valueZ | z value to be put into the histogram |
| weight | weight to be used |
| title | histogram title (to be used for error report) |
Definition at line 131 of file GaudiHistos_3DFixedBinning.icpp.
| AIDA::IProfile1D * GaudiHistos< PBASE >::fill | ( | AIDA::IProfile1D * | histo, |
| const double | valueX, | ||
| const double | valueY, | ||
| const double | weight, | ||
| const std::string & | title = "" |
||
| ) | const |
fill the 1D profile histogram with the values and weight
| histo | 1D profile histogram to be filled |
| valueX | x value to be put into the histogram |
| valueY | y value to be put into the histogram |
| weight | weight to be used |
| title | histogram title (to be used for error report) |
Definition at line 115 of file GaudiHistos_1DProfFixedBinning.icpp.
| AIDA::IProfile2D * GaudiHistos< PBASE >::fill | ( | AIDA::IProfile2D * | histo, |
| const double | valueX, | ||
| const double | valueY, | ||
| const double | valueZ, | ||
| const double | weight, | ||
| const std::string & | title = "" |
||
| ) | const |
fill the 2D profile histogram with the values and weight
| histo | 2D profile histogram to be filled |
| valueX | x value to be put into the histogram |
| valueY | y value to be put into the histogram |
| valueZ | z value to be put into the histogram |
| weight | weight to be used |
| title | histogram title (to be used for error report) |
Definition at line 114 of file GaudiHistos_2DProfFixedBinning.icpp.
|
protectedvirtual |
standard finalization method
Reimplemented in GaudiTuples< GaudiHistoTool >, GaudiTuples< GaudiHistoAlg >, GaudiHistoTool, GaudiTupleTool, GaudiTupleAlg, GaudiHistoAlg, and SequencerTimerTool.
Definition at line 173 of file GaudiHistos.icpp.
|
inline |
get flag to control output level of histograms
Definition at line 2696 of file GaudiHistos.h.
|
inline |
access the EXISTING 1D histogram by title
Wrapper method for the equivalent histo1D method. Retained for backwards compatibility, please use histo1D instead.
return the pointer to existing 1D histogram or NULL
Definition at line 2585 of file GaudiHistos.h.
|
inline |
access the EXISTING 1D histogram by ID
Wrapper method for the equivalent histo1D method. Retained for backwards compatibility, please use histo1D instead.
return the pointer to existing 1D histogram or NULL
Definition at line 2640 of file GaudiHistos.h.
|
inline |
access the EXISTING 1D histogram by title return the pointer to existing 1D histogram or NULL
Definition at line 2572 of file GaudiHistos.h.
| AIDA::IHistogram1D * GaudiHistos< PBASE >::histo1D | ( | const HistoID & | ID | ) | const |
access the EXISTING 1D histogram by ID return the pointer to existing 1D histogram or NULL
Definition at line 394 of file GaudiHistos.icpp.
|
inline |
get access to the map of all 1D histograms index via ID
Definition at line 2777 of file GaudiHistos.h.
|
inline |
get access to the map of all 1D histograms indexed via their title
Using this method one can inspect e.g. a list of active histograms
Definition at line 2751 of file GaudiHistos.h.
|
inline |
access the EXISTING 2D histogram by title return the pointer to existing 2D histogram or NULL
Definition at line 2593 of file GaudiHistos.h.
| AIDA::IHistogram2D * GaudiHistos< PBASE >::histo2D | ( | const HistoID & | ID | ) | const |
access the EXISTING 2D histogram by ID return the pointer to existing 2D histogram or NULL
Definition at line 408 of file GaudiHistos.icpp.
|
inline |
get access to the map of 2D histograms index via ID
Definition at line 2832 of file GaudiHistos.h.
|
inline |
get access to the map of all 2D histograms indexed via their title
Using this method one can inspect e.g. a list of active histograms
Definition at line 2806 of file GaudiHistos.h.
|
inline |
access the EXISTING 3D histogram by title return the pointer to existing 3D histogram or NULL
Definition at line 2602 of file GaudiHistos.h.
| AIDA::IHistogram3D * GaudiHistos< PBASE >::histo3D | ( | const HistoID & | ID | ) | const |
access the EXISTING 3D histogram by ID return the pointer to existing 3D histogram or NULL
Definition at line 422 of file GaudiHistos.icpp.
|
inline |
get access to the map of all 3D histograms index via a ID
Definition at line 2887 of file GaudiHistos.h.
|
inline |
get access to the map of all 3D histograms indexed via their title
Using this method one can inspect e.g. a list of active histograms
Definition at line 2861 of file GaudiHistos.h.
|
inline |
get histogram directory (property "HistoDir")
Definition at line 2706 of file GaudiHistos.h.
|
inline |
|
inline |
|
inline |
get the value for histogram offset (property "HistoOffSet")
Definition at line 2702 of file GaudiHistos.h.
|
inline |
get the constructed histogram path
Definition at line 2708 of file GaudiHistos.h.
|
inline |
print histograms at finalization ?
Definition at line 2714 of file GaudiHistos.h.
|
inline |
get top-level histogram directory (property "HistoTopDir")
Definition at line 2704 of file GaudiHistos.h.
|
private |
Constructor initialisation and job options.
Definition at line 55 of file GaudiHistos.icpp.
|
protectedvirtual |
standard initialization method
Reimplemented in GaudiTuples< GaudiHistoTool >, GaudiTuples< GaudiHistoAlg >, GaudiHistoTool, GaudiTupleTool, GaudiTupleAlg, GaudiHistoAlg, and SequencerTimerTool.
Definition at line 131 of file GaudiHistos.icpp.
|
private |
Declare a histogram to the monitor service.
Uses the histogram ID as the 'name' sent to the monitor service and the histogram title as the long description
Definition at line 374 of file GaudiHistos.icpp.
|
private |
Create a new histogram ID using the given title.
| [in] | title | Histogram title |
| [out] | ID | The ID to use for the new histogram |
Definition at line 477 of file GaudiHistos.icpp.
|
private |
Check if all histogram maps are empty.
Definition at line 356 of file GaudiHistos.icpp.
|
inline |
fill the 1D histogram (book on demand)
Wrapper method for the equivalent plot1D method. Retained for backwards compatibility, please use plot1D instead.
| value | value to be filled |
| title | histogram title (must be unique within the algorithm) |
| low | low limit for histogram |
| high | high limit for histogram |
| bins | number of bins |
| weight | weight |
Definition at line 155 of file GaudiHistos.h.
|
inline |
fill the 1D histogram (book on demand)
Wrapper method for the equivalent plot1D method. Retained for backwards compatibility, please use plot1D instead.
| value | value to be filled |
| hdef | histogram descriptor |
| weight | weight |
Definition at line 205 of file GaudiHistos.h.
|
inline |
fill the 1D histogram with forced ID assignment (book on demand)
Wrapper method for the equivalent plot1D method. Retained for backwards compatibility, please use plot1D instead.
| value | value to be filled |
| ID | histogram identifier |
| title | histogram title (must be unique within the algorithm) |
| low | low limit for histogram |
| high | high limit for histogram |
| bins | number of bins |
| weight | weight |
Definition at line 301 of file GaudiHistos.h.
|
inline |
fill the 1D histogram (book on demand)
Wrapper method for the equivalent plot1D method. Retained for backwards compatibility, please use plot1D instead.
| value | value to be filled |
| ID | histogram identifier |
| hdef | histogram descriptor |
| weight | weight |
Definition at line 355 of file GaudiHistos.h.
|
inline |
fill the 1D histogram with information from [first,last) sequence
Sequence, objects and function can be non-trivial:
where PT can be any function or function object for which the expression PT(p) , with p of type Particle* have some sense and can be evaluated to the values, which is convertible to double
| func | function to be plotted |
| first | begin of the sequence |
| last | end of the sequence |
| title | histogram title |
| low | low limit for histogram |
| high | high limit for histogram |
| bins | number of bins for histogram |
Definition at line 427 of file GaudiHistos.h.
|
inline |
fill the 1D histogram with forced ID and information from [first,last) sequence
Sequence, objects and function can be non-trivial:
| func | function to be plotted |
| first | begin of the sequence |
| last | end of the sequence |
| ID | histogram identifier |
| title | histogram title |
| low | low limit for histogram |
| high | high limit for histogram |
| bins | number of bins for histogram |
Definition at line 505 of file GaudiHistos.h.
|
inline |
book and fill the 1D histogram with information from [first,last) sequence with given weight
Sequence, objects and function can be non-trivial:
where PT and MASS can be any function or function object for which the expressions PT(p) and MASS with p of type Particle* have some sense and can be evaluated to the values, which is convertible to double
| first | begin of the sequence |
| last | end of the sequence |
| title | histogram title |
| func | function to be plotted |
| low | low limit for histogram |
| high | high limit for histogram |
| bins | number of bins for histogram |
| weight | weight function |
Definition at line 597 of file GaudiHistos.h.
|
inline |
book and fill the 1D histogram with forced ID and information from [first,last) sequence with given weight
Sequence, objects and function can be non-trivial:
where PT and MASS can be any function or function object for which the expressions PT(p) and MASS with p of type Particle* have some sense and can be evaluated to the values, which is convertible to double
| first | begin of the sequence |
| last | end of the sequence |
| ID | histogram identifier |
| title | histogram title |
| func | function to be plotted |
| low | low limit for histogram |
| high | high limit for histogram |
| bins | number of bins for histogram |
| weight | weight function |
Definition at line 689 of file GaudiHistos.h.
| AIDA::IHistogram1D * GaudiHistos< PBASE >::plot1D | ( | const double | value, |
| const std::string & | title, | ||
| const double | low, | ||
| const double | high, | ||
| const unsigned long | bins = 100, |
||
| const double | weight = 1.0 |
||
| ) | const |
fill the 1D histogram (book on demand)
This example illustrates the filling of the histogram titled "InvariantMass" with value mass .
If the histogram with given title does not exist yet it will be automatically booked with parameters low equal to 2.5, parameters high equal to 3.5 and bins equal to 100.
| value | value to be filled |
| title | histogram title (must be unique within the algorithm) |
| low | low limit for histogram |
| high | high limit for histogram |
| bins | number of bins |
| weight | weight |
Definition at line 137 of file GaudiHistos_1DFixedBinning.icpp.
| AIDA::IHistogram1D * GaudiHistos< PBASE >::plot1D | ( | const double | value, |
| const Gaudi::Histo1DDef & | hdef, | ||
| const double | weight = 1.0 |
||
| ) | const |
fill the 1D histogram (book on demand)
The histogram will get a unique identifier automatically assigned which by default will be equal to the histogram title.
The histogram descriptor comes e.g. from the component properties.
| value | value to be filled |
| hdef | histogram descriptor |
| weight | weight |
Definition at line 214 of file GaudiHistos_1DFixedBinning.icpp.
| AIDA::IHistogram1D * GaudiHistos< PBASE >::plot1D | ( | const double | value, |
| const HistoID & | ID, | ||
| const std::string & | title, | ||
| const double | low, | ||
| const double | high, | ||
| const unsigned long | bins = 100, |
||
| const double | weight = 1.0 |
||
| ) | const |
fill the 1D histogram with forced ID assignment (book on demand)
This example illustrates the filling of the 1D histogram ID=15 titled "Invariant Mass" with value mass .
If the histogram with given ID does not exist yet it will be automatically booked with parameters low equal to 2.5, parameters high equal to 3.5 and bins equal to 100.
It is also possible to use literal IDs. For example :-
Will book the same histogram, using the id "mass".
It is also possible using literal IDs, to place histograms in sub-directories from the main histogram directory, using for example :-
Which will create the histogram "mass" in the sub-directory "subdir". Histograms can also be created in sub-directories with numeric IDs if IDs such as "subdir/1" are used.
| value | value to be filled |
| ID | histogram identifier |
| title | histogram title (must be unique within the algorithm) |
| low | low limit for histogram |
| high | high limit for histogram |
| bins | number of bins |
| weight | weight |
Definition at line 161 of file GaudiHistos_1DFixedBinning.icpp.
| AIDA::IHistogram1D * GaudiHistos< PBASE >::plot1D | ( | const double | value, |
| const HistoID & | ID, | ||
| const Gaudi::Histo1DDef & | hdef, | ||
| const double | weight = 1.0 |
||
| ) | const |
fill the 1D histogram with forced ID assignment (book on demand)
The histogram descriptor comes e.g. from component properties
| value | value to be filled |
| ID | histogram identifier |
| hdef | histogram descriptor |
| weight | weight |
Definition at line 229 of file GaudiHistos_1DFixedBinning.icpp.
| AIDA::IHistogram1D * GaudiHistos< PBASE >::plot1D | ( | const double | value, |
| const std::string & | title, | ||
| const HistoBinEdges & | edges, | ||
| const double | weight = 1.0 |
||
| ) | const |
Fill the 1D variable binning histogram (book on demand)
This example illustrates the filling of the histogram titled "InvariantMass" with value mass.
If the histogram with given title does not exist yet it will be automatically booked with the given histogram bin edges.
| value | value to be filled |
| title | histogram title (must be unique within the algorithm) |
| edges | The histogram bin edges |
| weight | weight |
Definition at line 97 of file GaudiHistos_1DVariableBinning.icpp.
| AIDA::IHistogram1D * GaudiHistos< PBASE >::plot1D | ( | const double | value, |
| const HistoID & | ID, | ||
| const std::string & | title, | ||
| const HistoBinEdges & | edges, | ||
| const double | weight = 1.0 |
||
| ) | const |
fill the 1D variable binning histogram with forced ID assignment (book on demand)
This example illustrates the filling of the 1D histogram ID=15 titled "Invariant Mass" with value mass.
If the histogram with given ID does not exist yet it will be automatically booked with the given histogram bin edges.
It is also possible to use literal IDs. For example :-
Will book the same histogram, using the id "mass".
It is also possible using literal IDs, to place histograms in sub-directories from the main histogram directory, using for example :-
Which will create the histogram "mass" in the sub-directory "subdir". Histograms can also be created in sub-directories with numeric IDs if IDs such as "subdir/1" are used.
| value | value to be filled |
| ID | histogram identifier |
| title | histogram title (must be unique within the algorithm) |
| edges | The histogram bin edges |
| weight | weight |
Definition at line 119 of file GaudiHistos_1DVariableBinning.icpp.
| AIDA::IHistogram2D * GaudiHistos< PBASE >::plot2D | ( | const double | valueX, |
| const double | valueY, | ||
| const std::string & | title, | ||
| const double | lowX, | ||
| const double | highX, | ||
| const double | lowY, | ||
| const double | highY, | ||
| const unsigned long | binsX = 50, |
||
| const unsigned long | binsY = 50, |
||
| const double | weight = 1.0 |
||
| ) | const |
fill the 2D histogram (book on demand)
This example illustrates the filling of the 2D histogram titled "Invariant Mass2 versus Mass1" with values mass1 and mass2 .
If the histogram with given title does not exist yet it will be automatically booked with parameters lowX equal to 2.5, highX equal to 3.5, lowY equal to 4.5, highY equal to 5.5, binsX equal to 100 and binsY equal to 200.
| valueX | x value to be filled |
| valueY | y value to be filled |
| title | histogram title (must be unique within the algorithm) |
| lowX | low x limit for histogram |
| highX | high x limit for histogram |
| lowY | low y limit for histogram |
| highY | high y limit for histogram |
| binsX | number of bins in x |
| binsY | number of bins in y |
| weight | weight |
Definition at line 150 of file GaudiHistos_2DFixedBinning.icpp.
| AIDA::IHistogram2D * GaudiHistos< PBASE >::plot2D | ( | const double | valueX, |
| const double | valueY, | ||
| const HistoID & | ID, | ||
| const std::string & | title, | ||
| const double | lowX, | ||
| const double | highX, | ||
| const double | lowY, | ||
| const double | highY, | ||
| const unsigned long | binsX = 50, |
||
| const unsigned long | binsY = 50, |
||
| const double | weight = 1.0 |
||
| ) | const |
fill the 2D histogram with forced ID assignment (book on demand)
This example illustrates the filling of the 2D histogram ID=15 titled "Invariant Mass2 versus Mass1" with values mass1 and mass2 .
If the histogram with given title does not exist yet it will be automatically booked with parameters lowX equal to 2.5, highX equal to 3.5, lowY equal to 4.5, highY equal to 5.5, binsX equal to 100 and binsY equal to 200.
It is also possible to use literal IDs. For example :-
Will book the same histogram, using the id "mass".
It is also possible using literal IDs, to place histograms in sub-directories from the main histogram directory, using for example :-
Which will create the histogram "mass" in the sub-directory "subdir". Histograms can also be created in sub-directories with numeric IDs if IDs such as "subdir/1" are used.
| valueX | x value to be filled |
| valueY | y value to be filled |
| ID | Histogram ID to use |
| title | histogram title (must be unique within the algorithm) |
| lowX | low x limit for histogram |
| highX | high x limit for histogram |
| lowY | low y limit for histogram |
| highY | high y limit for histogram |
| binsX | number of bins in x |
| binsY | number of bins in y |
| weight | weight |
Definition at line 178 of file GaudiHistos_2DFixedBinning.icpp.
| AIDA::IHistogram2D * GaudiHistos< PBASE >::plot2D | ( | const double | valueX, |
| const double | valueY, | ||
| const std::string & | title, | ||
| const HistoBinEdges & | edgesX, | ||
| const HistoBinEdges & | edgesY, | ||
| const double | weight = 1.0 |
||
| ) | const |
Fill the 2D variable binning histogram (book on demand)
This example illustrates the filling of the 2D histogram titled "Invariant Mass2 versus Mass1" with values mass1 and mass2 .
If the histogram with given title does not exist yet it will be automatically booked with the given histogram bin edges.
| valueX | x value to be filled |
| valueY | y value to be filled |
| title | histogram title (must be unique within the algorithm) |
| edgesX | The histogram x bin edges |
| edgesY | The histogram y bin edges |
| weight | weight |
Definition at line 101 of file GaudiHistos_2DVariableBinning.icpp.
| AIDA::IHistogram2D * GaudiHistos< PBASE >::plot2D | ( | const double | valueX, |
| const double | valueY, | ||
| const HistoID & | ID, | ||
| const std::string & | title, | ||
| const HistoBinEdges & | edgesX, | ||
| const HistoBinEdges & | edgesY, | ||
| const double | weight = 1.0 |
||
| ) | const |
fill the 2D variable histogram with forced ID assignment (book on demand)
This example illustrates the filling of the 2D histogram ID=15 titled "Invariant Mass2 versus Mass1" with values mass1 and mass2 .
If the histogram with given title does not exist yet it will be automatically booked with the given histogram bin edges.
It is also possible to use literal IDs. For example :-
Will book the same histogram, using the id "mass".
It is also possible using literal IDs, to place histograms in sub-directories from the main histogram directory, using for example :-
Which will create the histogram "mass" in the sub-directory "subdir". Histograms can also be created in sub-directories with numeric IDs if IDs such as "subdir/1" are used.
| valueX | x value to be filled |
| valueY | y value to be filled |
| ID | Histogram ID to use |
| title | histogram title (must be unique within the algorithm) |
| edgesX | The histogram x bin edges |
| edgesY | The histogram y bin edges |
| weight | weight |
Definition at line 125 of file GaudiHistos_2DVariableBinning.icpp.
| AIDA::IHistogram3D * GaudiHistos< PBASE >::plot3D | ( | const double | valueX, |
| const double | valueY, | ||
| const double | valueZ, | ||
| const std::string & | title, | ||
| const double | lowX, | ||
| const double | highX, | ||
| const double | lowY, | ||
| const double | highY, | ||
| const double | lowZ, | ||
| const double | highZ, | ||
| const unsigned long | binsX = 10, |
||
| const unsigned long | binsY = 10, |
||
| const unsigned long | binsZ = 10, |
||
| const double | weight = 1.0 |
||
| ) | const |
fill the 3D histogram (book on demand)
This example illustrates the filling of the 3D histogram titled "Space Points" with values X, Y and Z.
If the histogram with given title does not exist yet it will be automatically booked with parameters lowX equal to 2.5, highX equal to 3.5, lowY equal to 4.5, highY equal to 5.5, lowZ equal to 6.5, highZ equal to 7.5, binsX equal to 10, binsY equal to 20 and binsZ equal to 30.
| valueX | x value to be filled |
| valueY | y value to be filled |
| valueZ | z value to be filled |
| title | histogram title (must be unique within the algorithm) |
| lowX | low x limit for histogram |
| highX | high x limit for histogram |
| lowY | low y limit for histogram |
| highY | high y limit for histogram |
| lowZ | low z limit for histogram |
| highZ | high z limit for histogram |
| binsX | number of bins in x |
| binsY | number of bins in y |
| binsZ | number of bins in z |
| weight | weight |
Definition at line 166 of file GaudiHistos_3DFixedBinning.icpp.
| AIDA::IHistogram3D * GaudiHistos< PBASE >::plot3D | ( | const double | valueX, |
| const double | valueY, | ||
| const double | valueZ, | ||
| const HistoID & | ID, | ||
| const std::string & | title, | ||
| const double | lowX, | ||
| const double | highX, | ||
| const double | lowY, | ||
| const double | highY, | ||
| const double | lowZ, | ||
| const double | highZ, | ||
| const unsigned long | binsX = 10, |
||
| const unsigned long | binsY = 10, |
||
| const unsigned long | binsZ = 10, |
||
| const double | weight = 1.0 |
||
| ) | const |
fill the 3D histogram with forced ID assignment (book on demand)
This example illustrates the filling of the 3D histogram ID=15 titled "Space Points" with values X, Y and Z.
If the histogram with given title does not exist yet it will be automatically booked with parameters lowX equal to 2.5, highX equal to 3.5, lowY equal to 4.5, highY equal to 5.5, lowZ equal to 6.5, highZ equal to 7.5, binsX equal to 10, binsY equal to 20 and binsZ equal to 30.
It is also possible to use literal IDs. For example :-
Will book the same histogram, using the id "space".
It is also possible using literal IDs, to place histograms in sub-directories from the main histogram directory, using for example :-
Which will create the histogram "space" in the sub-directory "subdir". Histograms can also be created in sub-directories with numeric IDs if IDs such as "subdir/1" are used.
| valueX | x value to be filled |
| valueY | y value to be filled |
| valueZ | z value to be filled |
| ID | Histogram ID to use |
| title | histogram title (must be unique within the algorithm) |
| lowX | low x limit for histogram |
| highX | high x limit for histogram |
| lowY | low y limit for histogram |
| highY | high y limit for histogram |
| lowZ | low z limit for histogram |
| highZ | high z limit for histogram |
| binsX | number of bins in x |
| binsY | number of bins in y |
| binsZ | number of bins in z |
| weight | weight |
Definition at line 200 of file GaudiHistos_3DFixedBinning.icpp.
| AIDA::IHistogram3D * GaudiHistos< PBASE >::plot3D | ( | const double | valueX, |
| const double | valueY, | ||
| const double | valueZ, | ||
| const std::string & | title, | ||
| const HistoBinEdges & | edgesX, | ||
| const HistoBinEdges & | edgesY, | ||
| const HistoBinEdges & | edgesZ, | ||
| const double | weight = 1.0 |
||
| ) | const |
Fill the 3D variable binning histogram (book on demand)
This example illustrates the filling of the 3D histogram titled "Space Points" with values X, Y and Z.
If the histogram with given title does not exist yet it will be automatically booked with the given histogram bin edges.
| valueX | x value to be filled |
| valueY | y value to be filled |
| valueZ | z value to be filled |
| title | histogram title (must be unique within the algorithm) |
| edgesX | The histogram x bin edges |
| edgesY | The histogram y bin edges |
| edgesZ | The histogram z bin edges |
| weight | weight |
Definition at line 105 of file GaudiHistos_3DVariableBinning.icpp.
| AIDA::IHistogram3D * GaudiHistos< PBASE >::plot3D | ( | const double | valueX, |
| const double | valueY, | ||
| const double | valueZ, | ||
| const HistoID & | ID, | ||
| const std::string & | title, | ||
| const HistoBinEdges & | edgesX, | ||
| const HistoBinEdges & | edgesY, | ||
| const HistoBinEdges & | edgesZ, | ||
| const double | weight = 1.0 |
||
| ) | const |
fill the 3D histogram with forced ID assignment (book on demand)
This example illustrates the filling of the 3D histogram ID=15 titled "Space Points" with values X, Y and Z.
If the histogram with given title does not exist yet it will be automatically booked with the given histogram bin edges and histogram ID.
It is also possible to use literal IDs. For example :-
Will book the same histogram, using the id "space".
It is also possible using literal IDs, to place histograms in sub-directories from the main histogram directory, using for example :-
Which will create the histogram "space" in the sub-directory "subdir". Histograms can also be created in sub-directories with numeric IDs if IDs such as "subdir/1" are used.
| valueX | x value to be filled |
| valueY | y value to be filled |
| valueZ | z value to be filled |
| ID | Histogram ID to use |
| title | histogram title (must be unique within the algorithm) |
| edgesX | The histogram x bin edges |
| edgesY | The histogram y bin edges |
| edgesZ | The histogram z bin edges |
| weight | weight |
Definition at line 131 of file GaudiHistos_3DVariableBinning.icpp.
|
private |
the handler for "HistoPrint" property
Definition at line 535 of file GaudiHistos.icpp.
| int GaudiHistos< PBASE >::printHistos | ( | const MSG::Level | level = MSG::ALWAYS | ) | const |
perform the actual printout of histograms
| level | The message level to print at |
Definition at line 224 of file GaudiHistos.icpp.
|
inline |
get the flag for histogram production (property "HistoProduce")
Definition at line 2694 of file GaudiHistos.h.
| AIDA::IProfile1D * GaudiHistos< PBASE >::profile1D | ( | const double | valueX, |
| const double | valueY, | ||
| const std::string & | title, | ||
| const double | lowX, | ||
| const double | highX, | ||
| const unsigned long | binsX = 100, |
||
| const std::string & | opt = "", |
||
| const double | lowY = -std::numeric_limits<double>::max(), |
||
| const double | highY = std::numeric_limits<double>::max(), |
||
| const double | weight = 1.0 |
||
| ) | const |
fill the 1D profile histogram (book on demand)
This example illustrates the filling of the 1D profile histogram titled "Invariant Mass2 versus Mass1" with values mass1 and mass2 .
If the histogram with given title does not exist yet it will be automatically booked with parameters lowX equal to 2.5, highX equal to 3.5, binsX equal to 100
| valueX | x value to be filled |
| valueY | y value to be filled |
| title | histogram title (must be unique within the algorithm) |
| lowX | low x limit for histogram |
| highX | high x limit for histogram |
| binsX | number of bins in x |
| opt | the options, used for evaluation of errors |
| lowY | the min cut-off for y-values |
| highY | the max cut-off for y-values |
| weight | weight |
Definition at line 148 of file GaudiHistos_1DProfFixedBinning.icpp.
| AIDA::IProfile1D * GaudiHistos< PBASE >::profile1D | ( | const double | valueX, |
| const double | valueY, | ||
| const HistoID & | ID, | ||
| const std::string & | title, | ||
| const double | lowX, | ||
| const double | highX, | ||
| const unsigned long | binsX = 100, |
||
| const std::string & | opt = "", |
||
| const double | lowY = -std::numeric_limits<double>::max(), |
||
| const double | highY = std::numeric_limits<double>::max(), |
||
| const double | weight = 1.0 |
||
| ) | const |
fill the 1D profile histogram with forced ID assignment (book on demand)
This example illustrates the filling of the 1D profile histogram with ID=15 titled "Invariant Mass2 versus Mass1" with values mass1 and mass2 .
If the histogram with given title does not exist yet it will be automatically booked with parameters lowX equal to 2.5, highX equal to 3.5, binsX equal to 100
It is also possible to use literal IDs. For example :-
Will book the same histogram, using the id "mass".
It is also possible using literal IDs, to place histograms in sub-directories from the main histogram directory, using for example :-
Which will create the histogram "mass" in the sub-directory "subdir". Histograms can also be created in sub-directories with numeric IDs if IDs such as "subdir/1" are used.
| valueX | x value to be filled |
| valueY | y value to be filled |
| ID | histogram identifier |
| title | histogram title (must be unique within the algorithm) |
| lowX | low x limit for histogram |
| highX | high x limit for histogram |
| binsX | number of bins in x |
| opt | the options, used for evaluation of errors |
| lowY | the min cut-off for y-values |
| highY | the max cut-off for y-values |
| weight | weight |
Definition at line 176 of file GaudiHistos_1DProfFixedBinning.icpp.
| AIDA::IProfile1D * GaudiHistos< PBASE >::profile1D | ( | const double | valueX, |
| const double | valueY, | ||
| const std::string & | title, | ||
| const HistoBinEdges & | edges, | ||
| const double | weight = 1.0 |
||
| ) | const |
fill the 1D variable binning profile histogram (book on demand)
This example illustrates the filling of the 1D profile histogram titled "Invariant Mass2 versus Mass1" with values mass1 and mass2 .
If the histogram with given title does not exist yet it will be automatically booked with the given histogram bin edges.
| valueX | x value to be filled |
| valueY | y value to be filled |
| title | histogram title (must be unique within the algorithm) |
| edges | The histogram bin edges |
| weight | weight |
Definition at line 95 of file GaudiHistos_1DProfVariableBinning.icpp.
| AIDA::IProfile1D * GaudiHistos< PBASE >::profile1D | ( | const double | valueX, |
| const double | valueY, | ||
| const HistoID & | ID, | ||
| const std::string & | title, | ||
| const HistoBinEdges & | edges, | ||
| const double | weight = 1.0 |
||
| ) | const |
fill the 1D variable binning profile histogram with forced ID assignment (book on demand)
This example illustrates the filling of the 1D profile histogram with ID=15 titled "Invariant Mass2 versus Mass1" with values mass1 and mass2 .
If the histogram with given ID does not exist yet it will be automatically booked with the given histogram bin edges.
It is also possible to use literal IDs. For example :-
Will book the same histogram, using the id "mass".
It is also possible using literal IDs, to place histograms in sub-directories from the main histogram directory, using for example :-
Which will create the histogram "mass" in the sub-directory "subdir". Histograms can also be created in sub-directories with numeric IDs if IDs such as "subdir/1" are used.
| valueX | x value to be filled |
| valueY | y value to be filled |
| ID | histogram identifier |
| title | histogram title (must be unique within the algorithm) |
| edges | The histogram bin edges |
| weight | weight |
Definition at line 117 of file GaudiHistos_1DProfVariableBinning.icpp.
|
inline |
access the EXISTING 1D profile histogram by title return the pointer to existing 1D profile histogram or NULL
Definition at line 2611 of file GaudiHistos.h.
| AIDA::IProfile1D * GaudiHistos< PBASE >::profile1D | ( | const HistoID & | ID | ) | const |
access the EXISTING 1D profile histogram by ID return the pointer to existing 1D profile histogram or NULL
Definition at line 435 of file GaudiHistos.icpp.
|
inline |
get access to the map of 1D profile histograms index via a ID
Definition at line 2942 of file GaudiHistos.h.
|
inline |
get access to the map of all 1D profile histograms indexed via their title
Using this method one can inspect e.g. a list of active histograms
Definition at line 2916 of file GaudiHistos.h.
| AIDA::IProfile2D * GaudiHistos< PBASE >::profile2D | ( | const double | valueX, |
| const double | valueY, | ||
| const double | valueZ, | ||
| const std::string & | title, | ||
| const double | lowX, | ||
| const double | highX, | ||
| const double | lowY, | ||
| const double | highY, | ||
| const unsigned long | binsX = 50, |
||
| const unsigned long | binsY = 50, |
||
| const double | weight = 1.0 |
||
| ) | const |
fill the 2D profile histogram (book on demand)
This example illustrates the filling of the 2D profile histogram titled "Space Points" with values X, Y and Z.
If the histogram with given title does not exist yet it will be automatically booked with parameters lowX equal to 2.5, highX equal to 3.5, lowY equal to 4.5, highY equal to 5.5, binsX equal to 10, binsY equal to 20.
| valueX | x value to be filled |
| valueY | y value to be filled |
| valueZ | z value to be filled |
| title | histogram title (must be unique within the algorithm) |
| lowX | low x limit for histogram |
| highX | high x limit for histogram |
| lowY | low y limit for histogram |
| highY | high y limit for histogram |
| binsX | number of bins in x |
| binsY | number of bins in y |
| weight | weight |
Definition at line 149 of file GaudiHistos_2DProfFixedBinning.icpp.
| AIDA::IProfile2D * GaudiHistos< PBASE >::profile2D | ( | const double | valueX, |
| const double | valueY, | ||
| const double | valueZ, | ||
| const HistoID & | ID, | ||
| const std::string & | title, | ||
| const double | lowX, | ||
| const double | highX, | ||
| const double | lowY, | ||
| const double | highY, | ||
| const unsigned long | binsX = 50, |
||
| const unsigned long | binsY = 50, |
||
| const double | weight = 1.0 |
||
| ) | const |
fill the 2D profile histogram with forced ID assignment (book on demand)
This example illustrates the filling of the 2D profile histogram with ID=15 titled "Space Points" with values X, Y and Z.
If the histogram with given title does not exist yet it will be automatically booked with parameters lowX equal to 2.5, highX equal to 3.5, lowY equal to 4.5, highY equal to 5.5, binsX equal to 10, binsY equal to 20.
It is also possible to use literal IDs. For example :-
Will book the same histogram, using the id "space".
It is also possible using literal IDs, to place histograms in sub-directories from the main histogram directory, using for example :-
Which will create the histogram "space" in the sub-directory "subdir". Histograms can also be created in sub-directories with numeric IDs if IDs such as "subdir/1" are used.
| valueX | x value to be filled |
| valueY | y value to be filled |
| valueZ | z value to be filled |
| ID | histogram identifier |
| title | histogram title (must be unique within the algorithm) |
| lowX | low x limit for histogram |
| highX | high x limit for histogram |
| lowY | low y limit for histogram |
| highY | high y limit for histogram |
| binsX | number of bins in x |
| binsY | number of bins in y |
| weight | weight |
Definition at line 179 of file GaudiHistos_2DProfFixedBinning.icpp.
| AIDA::IProfile2D * GaudiHistos< PBASE >::profile2D | ( | const double | valueX, |
| const double | valueY, | ||
| const double | valueZ, | ||
| const std::string & | title, | ||
| const HistoBinEdges & | edgesX, | ||
| const HistoBinEdges & | edgesY, | ||
| const double | weight = 1.0 |
||
| ) | const |
fill the 2D variable binning profile histogram (book on demand)
This example illustrates the filling of the 2D profile histogram titled "Space Points" with values X, Y and Z.
If the histogram with given title does not exist yet it will be automatically booked with the given histogram bin edges.
| valueX | x value to be filled |
| valueY | y value to be filled |
| valueZ | z value to be filled |
| title | histogram title (must be unique within the algorithm) |
| edgesX | The histogram x bin edges |
| edgesY | The histogram x bin edges |
| weight | weight |
Definition at line 98 of file GaudiHistos_2DProfVariableBinning.icpp.
| AIDA::IProfile2D * GaudiHistos< PBASE >::profile2D | ( | const double | valueX, |
| const double | valueY, | ||
| const double | valueZ, | ||
| const HistoID & | ID, | ||
| const std::string & | title, | ||
| const HistoBinEdges & | edgesX, | ||
| const HistoBinEdges & | edgesY, | ||
| const double | weight = 1.0 |
||
| ) | const |
fill the 2D variable binning profile histogram with forced ID assignment (book on demand)
This example illustrates the filling of the 2D profile histogram titled "Space Points" with values X, Y and Z.
If the histogram with given ID does not exist yet it will be automatically booked with the given histogram bin edges.
It is also possible to use literal IDs. For example :-
Will book the same histogram, using the id "mass".
It is also possible using literal IDs, to place histograms in sub-directories from the main histogram directory, using for example :-
Which will create the histogram "mass" in the sub-directory "subdir". Histograms can also be created in sub-directories with numeric IDs if IDs such as "subdir/1" are used.
| valueX | x value to be filled |
| valueY | y value to be filled |
| valueZ | z value to be filled |
| ID | histogram identifier |
| title | histogram title (must be unique within the algorithm) |
| edgesX | The histogram x bin edges |
| edgesY | The histogram y bin edges |
| weight | weight |
Definition at line 122 of file GaudiHistos_2DProfVariableBinning.icpp.
|
inline |
access the EXISTING 2D profile histogram by title return the pointer to existing 2D profile histogram or NULL
Definition at line 2620 of file GaudiHistos.h.
| AIDA::IProfile2D * GaudiHistos< PBASE >::profile2D | ( | const HistoID & | ID | ) | const |
access the EXISTING 2D profile histogram by ID return the pointer to existing 2D profile histogram or NULL
Definition at line 449 of file GaudiHistos.icpp.
|
inline |
get access to the map of 2D profile histograms index via a ID
Definition at line 2997 of file GaudiHistos.h.
|
inline |
get access to the map of all 2D profile histograms indexed via their title
Using this method one can inspect e.g. a list of active histograms
Definition at line 2971 of file GaudiHistos.h.
|
inline |
set the flag for NaN checks (property "HistoCheckForNan")
Definition at line 3006 of file GaudiHistos.h.
|
inline |
set flag to control output level of histograms
Definition at line 3004 of file GaudiHistos.h.
|
inline |
set histogram directory (property "HistoDir")
Definition at line 3017 of file GaudiHistos.h.
|
inline |
set a value for histogram offset (property "HistoOffSet"
Definition at line 3010 of file GaudiHistos.h.
|
inline |
set top-level histogram directory (property "HistoTopDir")
Definition at line 3014 of file GaudiHistos.h.
|
inline |
set the flag for histogram production (property "HistoProduce")
Definition at line 3002 of file GaudiHistos.h.
|
inline |
set the flag for histogram path split (property "HistoSplitDir")
Definition at line 3008 of file GaudiHistos.h.
|
inline |
get the flag for histogram path split (property "HistoSplitDir")
Definition at line 2700 of file GaudiHistos.h.
|
private |
Searches 'title' for all instancies of 'A' and replaces them with 'B'.
Definition at line 520 of file GaudiHistos.icpp.
| unsigned int GaudiHistos< PBASE >::totalNumberOfHistos | ( | ) | const |
Returns the total number of histograms (of all types) currently booked.
Definition at line 463 of file GaudiHistos.icpp.
|
inline |
Use old style sequencial numerical automatically assigned IDs ?
Definition at line 2716 of file GaudiHistos.h.
|
private |
flag to control check for Nan/Finite while filling the histogram
Definition at line 3100 of file GaudiHistos.h.
|
private |
Flag to turn on/off the registration of histograms to the Monitoring Service.
Definition at line 3112 of file GaudiHistos.h.
|
private |
flag to control output level of histograms
Definition at line 3098 of file GaudiHistos.h.
|
mutableprivate |
the actual storage/access of 1D histograms by unique ID
Definition at line 3117 of file GaudiHistos.h.
|
mutableprivate |
the actual storage/access of 1D histograms by unique title
Definition at line 3115 of file GaudiHistos.h.
|
private |
format for printout of 1D-histograms as a table
Definition at line 3140 of file GaudiHistos.h.
|
private |
format for printout of 1D-histograms as a table
Definition at line 3142 of file GaudiHistos.h.
|
private |
the header for the table of 1-D historgrams
Definition at line 3144 of file GaudiHistos.h.
|
mutableprivate |
the actual storage/access of 2D histograms by unique ID
Definition at line 3122 of file GaudiHistos.h.
|
mutableprivate |
the actual storage/access of 2D histograms by unique title
Definition at line 3120 of file GaudiHistos.h.
|
mutableprivate |
the actual storage/access of 3D histograms by unique ID
Definition at line 3127 of file GaudiHistos.h.
|
mutableprivate |
the actual storage/access of 3D histograms by unique title
Definition at line 3125 of file GaudiHistos.h.
|
private |
histogram directory
Definition at line 3108 of file GaudiHistos.h.
|
private |
general histogram ID offset (only works for automatically assigned numeric IDs)
Definition at line 3104 of file GaudiHistos.h.
|
private |
print histograms at finalization
Definition at line 3110 of file GaudiHistos.h.
|
private |
histogram top level directory
Definition at line 3106 of file GaudiHistos.h.
|
private |
Map of strings to search and replace when using the title as the basis of automatically generated literal IDs.
Definition at line 3150 of file GaudiHistos.h.
|
private |
flag to SWITCH ON/SWITCH OFF the histogrm fillling and booking
Definition at line 3096 of file GaudiHistos.h.
|
mutableprivate |
the actual storage/access of 1D profile histograms by unique ID
Definition at line 3132 of file GaudiHistos.h.
|
mutableprivate |
the actual storage/access of 1D profile histograms by unique title
Definition at line 3130 of file GaudiHistos.h.
|
mutableprivate |
the actual storage/access of 2D profile histograms by unique ID
Definition at line 3137 of file GaudiHistos.h.
|
mutableprivate |
the actual storage/access of 2D profile histograms by unique title
Definition at line 3135 of file GaudiHistos.h.
|
private |
split histogram directory name (very useful for Hbook)
Definition at line 3102 of file GaudiHistos.h.
|
private |
Flag to switch back to the old style sequencial numerical automatic IDs.
Definition at line 3146 of file GaudiHistos.h.