/[PAMELA software]/PamCut/CollectionActions/Histo1DActions/TrkSigmaDeflHistoAction/TrkSigmaDeflHistoAction.h
ViewVC logotype

Diff of /PamCut/CollectionActions/Histo1DActions/TrkSigmaDeflHistoAction/TrkSigmaDeflHistoAction.h

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.3 by pam-fi, Tue Oct 27 10:17:45 2009 UTC revision 1.4.2.1 by pam-fi, Thu May 6 17:09:54 2010 UTC
# Line 11  Line 11 
11    
12  #include "../Histo1DAction/Histo1DAction.h"  #include "../Histo1DAction/Histo1DAction.h"
13    
14  /*! @brief An action that, given the rigidity bins, fills the histogram with the number of events for which  /*! @brief An action that, given the rigidity bins, fills an integral histogram with the number of events for which
15   * the deflection error (sigma_defl) is smaller than minimum bin deflection=1/(maximum bin rigidity).   * the deflection error (sigma_defl) times a constant is smaller than minimum bin deflection=1/(maximum bin rigidity).
16   *   *
17   * For each event, the content of ALL the rigidity bins, which satisfy the above condition, is increased by 1.   * For each event, the content of ALL the rigidity bins, which satisfy the above condition, is increased by 1.
18   * Since this is quite different from what is done by Histo1DAction::Fill(), the OnGodd() implementation   * Since this is quite different from what is done by Histo1DAction::Fill(), the OnGodd() implementation
19   * is customary and doesn't call Fill(). Notice that this implies that no overflow nor underflow counter is   * is customary and doesn't call Fill(). Notice that this implies that no overflow nor underflow counter is
20   * maintained (in current implementation).   * maintained (in current implementation).
21   */   */
22  class TrkSigmaDeflHistoAction: public Histo1DAction<Int_t> {  class TrkSigmaDeflHistoAction: public Histo1DAction<Float_t> {
23    
24  public:  public:
25    
# Line 28  public: Line 28  public:
28     * @param actionName The action's name.     * @param actionName The action's name.
29     * @param outFileBase The file base name for the ROOT histogram output (".root" will be appended).     * @param outFileBase The file base name for the ROOT histogram output (".root" will be appended).
30     *                    If "", no ROOT output will be produced.     *                    If "", no ROOT output will be produced.
31     * @param mode The mode of ROOT file creation (see documentation of TFile constructor     * @param mode The mode of ROOT file creation (see documentation of TFile constructor).
32     * @param outRoot If true, the output file in ROOT format will be produced.     * @param outRoot If true, the output file in ROOT format will be produced.
33     * @param outText If true, the output file in text format will be produced.     * @param outText If true, the output file in text format will be produced.
34     *             in ROOT's reference guide).     *             in ROOT's reference guide).
35     * @param title The ROOT histogram title.     * @param title The ROOT histogram title.
36     */     */
37    TrkSigmaDeflHistoAction(const char *actionName, TString outFileBase = "", TString mode = "UPDATE", bool outRoot =    TrkSigmaDeflHistoAction(const char *actionName, TString outFileBase = "", TString mode = "UPDATE",
38        true, bool outText = true, TString title = "Sigma(deflection)");        float sigmaDeflFactor = 1., bool outRoot = true, bool outText = true, TString title = "Sigma(deflection)");
39    
40    /*! @brief Destructor */    /*! @brief Destructor */
41    ~TrkSigmaDeflHistoAction() {    ~TrkSigmaDeflHistoAction() {
# Line 46  public: Line 46  public:
46     * @param event The selected event.     * @param event The selected event.
47     */     */
48    void OnGood(PamLevel2 *event);    void OnGood(PamLevel2 *event);
49    
50    private:
51      float _sigmaDeflFactor;
52  };  };
53    
54  #endif /* TrkSigmaDeflHISTOACTION_H_ */  #endif /* TrkSigmaDeflHISTOACTION_H_ */

Legend:
Removed from v.1.3  
changed lines
  Added in v.1.4.2.1

  ViewVC Help
Powered by ViewVC 1.1.23