Belle II Software development
CDCTriggerNDFinderModule.h
1/**************************************************************************
2 * basf2 (Belle II Analysis Software Framework) *
3 * Author: The Belle II Collaboration *
4 * *
5 * See git log for contributors and copyright holders. *
6 * This file is licensed under LGPL-3.0, see LICENSE.md. *
7 **************************************************************************/
8
9#pragma once
10
11#include "framework/core/Module.h"
12#include "framework/datastore/StoreArray.h"
13#include "trg/cdc/dataobjects/CDCTriggerTrack.h"
14#include "trg/cdc/dataobjects/CDCTrigger3DFinderInfo.h"
15#include "trg/cdc/dataobjects/CDCTriggerSegmentHit.h"
16#include "trg/cdc/NDFinder.h"
17#include "trg/cdc/Clusterizend.h"
18
19namespace Belle2 {
27 public:
32
34 virtual void initialize() override;
35 virtual void beginRun() override;
36 virtual void event() override;
37 virtual void endRun() override;
38 virtual void terminate() override;
39
40 private:
41
50
57
76 double m_thresh;
99 std::string m_axialFile;
101 std::string m_stereoFile;
102 };
104}
int m_minSuperAxial
Cluster pruning: Minimum number of axial super layer hits related to a cluster for the cluster to be ...
std::string m_NDFinderTracksName
Name for NDFinder tracks.
virtual void initialize() override
Module functions.
virtual void event() override
This method is the core of the module.
double m_thresh
Track estimation: Minimum weight of a cluster member cell relative to the peak weight of the cluster ...
std::string m_NDFinderTrackToHitArrayName
Name for NDFinder Track To Hit Array.
int m_thetaTrim
Clustering with 3d volume: Max deletion in theta (number of cells in each direction from max.
virtual void endRun() override
This method is called if the current run ends.
int m_minPeakWeight
Clustering with 3d volume: Cut on the peak cell weight.
int m_omegaTrim
Clustering with 3d volume: Max deletion in omega (number of cells in each direction from max.
NDFinder m_NDFinder
Instance of the 3D Track Finder.
virtual void terminate() override
This method is called at the end of the event processing.
std::string m_axialFile
File name of the axial hit patterns.
int m_minWeight
Clustering: Minimum weight of a cell in Hough space for the cell to be considered as a cluster member...
int m_minSuperStereo
Cluster pruning: Minimum number of stereo super layer hits related to a cluster for the cluster to be...
virtual void beginRun() override
Called when entering a new run.
bool m_diagonal
Clustering: consider diagonal neighbors.
int m_phiTrim
Clustering with 3d volume: Max deletion in phi (number of cells in each direction from max.
std::string m_TrackSegmentHitsName
Name for TS hits.
std::string m_NDFinderInfosName
Name for the NDFinder Cluster Data.
StoreArray< CDCTrigger3DFinderInfo > m_NDFinderInfos
StoreArray for NDFinder Cluster Data.
StoreArray< CDCTriggerSegmentHit > m_TrackSegmentHits
StoreArray for TS hits.
StoreArray< CDCTriggerTrack > m_NDFinderTracks
StoreArray for 2D finder tracks from unpacker.
int m_minTotalWeight
Clustering with 3d volume: Cut on the total weight in this volume.
std::string m_stereoFile
File name of the stereo hit patterns.
int m_minCells
Clustering: minimum number of cells for a cluster.
bool m_dbscanning
Clustering method: When true: dbscan, when false: fixed three dimensional volume.
int m_iterations
Clustering with 3d volume: Number of global maximum searches per Hough space.
int m_minPts
Clustering: Minimum number of neighbor cells with minWeight for a cell to be considered a core cell.
bool m_verbose
Print Hough planes and verbose output.
Base class for Modules.
Definition: Module.h:72
Class to represent the CDC NDFinder.
Definition: NDFinder.h:107
Accessor to arrays stored in the data store.
Definition: StoreArray.h:113
Abstract base class for different kinds of events.