1 |
pam-fi |
1.1 |
/* |
2 |
|
|
* CaloDedxVsRigHistoAction.cpp |
3 |
|
|
* |
4 |
|
|
* Created on: 11/set/2009 |
5 |
|
|
* Author: Nicola Mori |
6 |
|
|
*/ |
7 |
|
|
|
8 |
|
|
/*! @file CaloDedxVsRigHistoAction.cpp The CaloDedxVsRigHistoAction class implementation file. */ |
9 |
|
|
|
10 |
|
|
#include "CaloDedxVsRigHistoAction.h" |
11 |
|
|
|
12 |
|
|
CaloDedxVsRigHistoAction::CaloDedxVsRigHistoAction(const char *actionName, unsigned int plane, unsigned int view, TString outFileBase, |
13 |
|
|
TString mode, bool outRoot, bool outText, TString title) : |
14 |
|
|
Histo2DAction<Int_t> (actionName, title, outFileBase, mode, outRoot, outText), _plane(plane), _view(view) { |
15 |
|
|
} |
16 |
|
|
|
17 |
|
|
void CaloDedxVsRigHistoAction::OnGood(PamLevel2 *event) { |
18 |
|
|
|
19 |
|
|
Fill(1./event->GetTrack(0)->GetTrkTrack()->GetDeflection(), event->GetCaloLevel1()->qtotpl(_view, _plane)); |
20 |
|
|
|
21 |
|
|
} |