#include <cassert>#include "Candidate/CandContext.h"#include "Candidate/CandHandle.h"#include "CandDigit/CandDeMuxDigitHandle.h"#include "CandDigit/CandDeMuxDigitListHandle.h"#include "MessageService/MsgService.h"#include "Algorithm/AlgConfig.h"#include "DeMux/DmxStatus.h"#include "DeMux/DmxUtilities.h"#include "DeMux/DmxHypothesis.h"#include "DeMux/DmxPlane.h"#include "DeMux/DmxShowerPlane.h"#include "DeMux/DmxMuonPlane.h"#include "Algorithm/AlgFactory.h"#include "Algorithm/AlgHandle.h"#include "DeMux/AlgDeMuxGolden.h"#include "Navigation/NavKey.h"#include "Navigation/NavSet.h"#include "TObjArray.h"#include "TH1.h"#include "TFolder.h"#include "TROOT.h"Go to the source code of this file.
Functions | |
| NavKey | KeyPlane (const DmxPlane *currentPlane) |
| NavKey | KeyU (const DmxPlane *currentPlane) |
| NavKey | KeyV (const DmxPlane *currentPlane) |
| NavKey | KeyOnGoldenU (const DmxPlane *currentPlane) |
| NavKey | KeyOnGoldenV (const DmxPlane *currentPlane) |
| NavKey | KeyOnLeadU (const DmxPlane *currentPlane) |
| NavKey | KeyOnLeadV (const DmxPlane *currentPlane) |
| CVSID ("$Id: AlgDeMuxGolden.cxx,v 1.15 2003/05/14 19:28:02 brebel Exp $") | |
|
||||||||||||
|
|
|
|
Definition at line 52 of file AlgDeMuxGolden.cxx. References DmxPlane::GetPlaneView(), and DmxPlane::IsGolden(). Referenced by AlgDeMuxGolden::RunAlg(). 00052 {
00053 return currentPlane->IsGolden() && currentPlane->GetPlaneView() == PlaneView::kU;
00054 }
|
|
|
Definition at line 56 of file AlgDeMuxGolden.cxx. References DmxPlane::GetPlaneView(), and DmxPlane::IsGolden(). Referenced by AlgDeMuxGolden::RunAlg(). 00056 {
00057 return currentPlane->IsGolden() && currentPlane->GetPlaneView() == PlaneView::kV;
00058 }
|
|
|
Definition at line 61 of file AlgDeMuxGolden.cxx. References DmxPlane::GetPlaneView(), and DmxPlane::IsGolden(). Referenced by AlgDeMuxGolden::RunAlg(). 00061 {
00062 return !currentPlane->IsGolden() && currentPlane->GetPlaneView() == PlaneView::kU;
00063 }
|
|
|
Definition at line 65 of file AlgDeMuxGolden.cxx. References DmxPlane::GetPlaneView(), and DmxPlane::IsGolden(). Referenced by AlgDeMuxGolden::RunAlg(). 00065 {
00066 return !currentPlane->IsGolden() && currentPlane->GetPlaneView() == PlaneView::kV;
00067 }
|
|
|
Definition at line 38 of file AlgDeMuxGolden.cxx. References DmxPlane::GetPlaneNumber(). Referenced by AlgDeMuxGolden::RunAlg(). 00038 {
00039 return currentPlane->GetPlaneNumber();
00040 }
|
|
|
Definition at line 43 of file AlgDeMuxGolden.cxx. References DmxPlane::GetPlaneView(). 00043 {
00044 return currentPlane->GetPlaneView() == PlaneView::kU;
00045 }
|
|
|
Definition at line 47 of file AlgDeMuxGolden.cxx. References DmxPlane::GetPlaneView(). 00047 {
00048 return currentPlane->GetPlaneView() == PlaneView::kV;
00049 }
|
1.3.9.1