#include <NuCutImps.h>
Inheritance diagram for NuCutImps::Bravo:

Public Member Functions | |
| Bravo (const NuPlots *plots=0) | |
Protected Member Functions | |
| void | Preselection (const NuEvent &nu) |
| void | Selection (const NuEvent &nu) |
Private Attributes | |
| NuCutsSelection | fNuCutsSelection |
| CC0325Std | fCC0325Std |
|
|
Definition at line 258 of file NuCutImps.cxx. References plots(), NuCut::SetAnaVersion(), and NuCut::SetFidVol(). 00258 : 00259 NuCut("Bravo", plots), 00260 fNuCutsSelection(NuCuts::kNMB0325Bravo, plots) 00261 { 00262 SetFidVol("cc2008"); 00263 SetAnaVersion(9); 00264 }
|
|
|
Implements NuCut. Definition at line 267 of file NuCutImps.cxx. References NuCut::Defer_Preselection(), and fNuCutsSelection. 00268 {
00269 // Use old preselection
00270 Defer_Preselection(fNuCutsSelection, nu);
00271
00272 } // Eend of preselection function
|
|
|
Implements NuCut. Definition at line 275 of file NuCutImps.cxx. References NuEvent::charge, NuCut::Defer_Selection(), NuEvent::dpID, fCC0325Std, NuCut::Keep_If(), NuEvent::relativeAngle, and NuEvent::sigqp_qp. 00276 {
00277 if (nu.charge != +1) {
00278 Defer_Selection(fCC0325Std, nu);
00279 }
00280 else {
00281 Keep_If(nu.dpID > 0.25, "DpID");
00282 Keep_If(1./nu.sigqp_qp > 3.5, "SigmaQP_QP");
00283 Keep_If(TMath::Abs(nu.relativeAngle - TMath::Pi()) > 2.12, "RelativeAngle");
00284 }
00285 }
|
|
|
Definition at line 52 of file NuCutImps.h. Referenced by Selection(). |
|
|
Definition at line 51 of file NuCutImps.h. Referenced by Preselection(). |
1.3.9.1