/[PAMELA software]/PamCut/CollectionActions/EvRateS11VsBabsHistoAction/EvRateS11VsBabsHistoAction.cpp
ViewVC logotype

Contents of /PamCut/CollectionActions/EvRateS11VsBabsHistoAction/EvRateS11VsBabsHistoAction.cpp

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.1 - (show annotations) (download)
Wed Aug 5 13:57:20 2009 UTC (15 years, 4 months ago) by pam-fi
Branch: MAIN
CVS Tags: Root_V8, MergedToHEAD_1, nuclei_reproc, MergedFromV8_1, BeforeMergingFromV8_1, V9, HEAD
Branch point for: V8
Added some new actions.

1 /*
2 * EvRateS11VsBabsHistoAction.cpp
3 *
4 * Created on: 10-jun-2009
5 * Author: Nicola Mori
6 */
7
8 /*! @file EvRateS11VsBabsHistoAction.cpp The EvRateS11VsBabsHistoAction class implementation file. */
9
10 #include "EvRateS11VsBabsHistoAction.h"
11
12 EvRateS11VsBabsHistoAction::EvRateS11VsBabsHistoAction(const char *actionName, TString outFileName, TString mode) :
13 CollectionAction(actionName), _outFileName(outFileName), _histo(), _mode(mode) {
14
15 _histo.SetName(GetName());
16 _histo.SetTitle("Event rate on S11 Vs. Geomagnetic field");
17 _histo.GetXaxis()->SetTitle("Magnetic field (gauss)");
18 _histo.GetYaxis()->SetTitle("Event rate on S11 (Hz)");
19 _histo.SetBins(100, 0., 1., 100, 0., 4000.);
20 }
21
22 void EvRateS11VsBabsHistoAction::OnGood(PamLevel2 *event) {
23
24 int totRate = 0;
25 for (int i = 0; i < 16; i++)
26 totRate += event->GetTrigLevel2()->pmtcount1[i];
27 _histo.Fill(event->GetOrbitalInfo()->Babs, (float) totRate / 16.);
28
29 }
30
31 void EvRateS11VsBabsHistoAction::Finalize() {
32
33 TFile outFile(_outFileName, _mode);
34 outFile.cd();
35 _histo.Write();
36 outFile.Close();
37 }

  ViewVC Help
Powered by ViewVC 1.1.23