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

Contents of /PamCut/CollectionActions/Histo1DActions/TrkMDRHistoAction/TrkMDRHistoAction.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.1 - (show annotations) (download)
Fri Sep 25 15:36:31 2009 UTC (15 years, 2 months ago) by pam-fi
Branch: MAIN
File MIME type: text/plain
Added to repository.

1 /*
2 * TrkMDRHistoAction.h
3 *
4 * Created on: 03-aug-2009
5 * Author: S. Ricciarini
6 */
7
8
9 /*! @file TrkMDRHistoAction.h The TrkMDRHistoAction class declaration file. */
10
11 #ifndef TRKMDRHISTOACTION_H_
12 #define TRKMDRHISTOACTION_H_
13
14 #include "../Histo1DAction/Histo1DAction.h"
15
16 /*! @brief An action that fills an MDR (GV) 1D histogram.
17 */
18 class TrkMDRHistoAction: public Histo1DAction<Int_t> {
19
20 public:
21
22 /*! @brief Constructor.
23 *
24 * The histogram binning is defined by the content of the bins vector.
25 *
26 * @param actionName The action's name.
27 * @param outFileBase The file base name for the ROOT histogram output (".root" will be appended).
28 * If "", no ROOT output will be produced.
29 * @param mode The mode of ROOT file creation (see documentation of TFile constructor
30 * in ROOT's reference guide).
31 * @param title The ROOT histogram title.
32 */
33 TrkMDRHistoAction(const char *actionName, TString outFileBase = "", TString mode = "UPDATE", bool outRoot = true,
34 bool outText = true, TString title = "MDR");
35
36 /*! @brief Destructor */
37 ~TrkMDRHistoAction() {
38 }
39
40 /*! @brief Fills histogram with the selected event.
41 *
42 * @param event The selected event.
43 */
44 void OnGood(PamLevel2 *event);
45
46 };
47
48 #endif /* TRKMDRHISTOACTION_H_ */

  ViewVC Help
Powered by ViewVC 1.1.23