Skip to content
Snippets Groups Projects
Commit 1b8946f7 authored by Tadej Novak's avatar Tadej Novak
Browse files

Merge branch 'bkerridg_afpedmchange' into 'main'

Adjust AFPTrack to set nHoles to be unsigned int to avoid conflict

See merge request !71402
parents 7e4a35ef 21284a48
No related branches found
No related tags found
29 merge requests!78241Draft: FPGATrackSim: GenScan code refactor,!78236Draft: Switching Streams https://its.cern.ch/jira/browse/ATR-27417,!78056AFP monitoring: new synchronization and cleaning,!78041AFP monitoring: new synchronization and cleaning,!77990Updating TRT chip masks for L1TRT trigger simulation - ATR-28372,!77733Draft: add new HLT NN JVT, augmented with additional tracking information,!77731Draft: Updates to ZDC reconstruction,!77728Draft: updates to ZDC reconstruction,!77522Draft: sTGC Pad Trigger Emulator,!76725ZdcNtuple: Fix cppcheck warning.,!76611L1CaloFEXByteStream: Fix out-of-bounds array accesses.,!76475Punchthrough AF3 implementation in FastG4,!76474Punchthrough AF3 implementation in FastG4,!76343Draft: MooTrackBuilder: Recalibrate NSW hits in refine method,!75729New implementation of ZDC nonlinear FADC correction.,!75703Draft: Update to HI han config for HLT jets,!75184Draft: Update file heavyions_run.config,!74430Draft: Fixing upper bound for Delayed Jet Triggers,!73963Changing the path of the histograms to "Expert" area,!73875updating ID ART reference plots,!73874AtlasCLHEP_RandomGenerators: Fix cppcheck warnings.,!73449Add muon detectors to DarkJetPEBTLA partial event building,!73343Draft: [TrigEgamma] Add photon ringer chains on bootstrap mechanism,!72336Fixed TRT calibration crash,!72176Draft: Improving L1TopoOnline chain that now gets no-empty plots. Activating it by default,!72012Draft: Separate JiveXMLConfig.py into Config files,!71876Fix MET trigger name in MissingETMonitoring,!71820Draft: Adding new TLA End-Of-Fill (EOF) chains and removing obsolete DIPZ chains,!71402Adjust AFPTrack to set nHoles to be unsigned int to avoid conflict
......@@ -28,7 +28,7 @@ namespace xAOD
AUXSTORE_PRIMITIVE_SETTER_AND_GETTER (AFPTrack_v1, float, xSlope, setXSlope)
AUXSTORE_PRIMITIVE_SETTER_AND_GETTER (AFPTrack_v1, float, ySlope, setYSlope)
// AUXSTORE_PRIMITIVE_SETTER_AND_GETTER (AFPTrack_v1, float, zSlope, setZSlope)
AUXSTORE_PRIMITIVE_SETTER_AND_GETTER (AFPTrack_v1, int, nHoles, setNHoles)
AUXSTORE_PRIMITIVE_SETTER_AND_GETTER (AFPTrack_v1, unsigned int, nHoles, setNHoles)
AUXSTORE_PRIMITIVE_SETTER_AND_GETTER (AFPTrack_v1, int, nHits, setNHits)
AUXSTORE_PRIMITIVE_SETTER_AND_GETTER (AFPTrack_v1, float, chi2, setChi2)
AUXSTORE_PRIMITIVE_SETTER_AND_GETTER (AFPTrack_v1, int, algID, setAlgID)
......
......@@ -27,7 +27,7 @@ namespace xAOD
AUXSTORE_PRIMITIVE_SETTER_AND_GETTER (AFPTrack_v2, float, zLocal, setZLocal)
AUXSTORE_PRIMITIVE_SETTER_AND_GETTER (AFPTrack_v2, float, xSlope, setXSlope)
AUXSTORE_PRIMITIVE_SETTER_AND_GETTER (AFPTrack_v2, float, ySlope, setYSlope)
AUXSTORE_PRIMITIVE_SETTER_AND_GETTER (AFPTrack_v2, int, nHoles, setNHoles)
AUXSTORE_PRIMITIVE_SETTER_AND_GETTER (AFPTrack_v2, unsigned int, nHoles, setNHoles)
AUXSTORE_PRIMITIVE_SETTER_AND_GETTER (AFPTrack_v2, int, nClusters, setNClusters)
AUXSTORE_PRIMITIVE_SETTER_AND_GETTER (AFPTrack_v2, float, chi2, setChi2)
AUXSTORE_PRIMITIVE_SETTER_AND_GETTER (AFPTrack_v2, int, algID, setAlgID)
......
......@@ -44,7 +44,7 @@ namespace xAOD {
std::vector< float > xSlope;
std::vector< float > ySlope;
// float zSlope() const;
std::vector< int > nHoles;
std::vector< unsigned int > nHoles;
std::vector< int > nHits;
std::vector< std::vector<AFPTrack_v1::AFPHitLink_t> > hits;
std::vector< float > chi2;
......
......@@ -43,7 +43,7 @@ namespace xAOD {
std::vector< float > zLocal;
std::vector< float > xSlope;
std::vector< float > ySlope;
std::vector< int > nHoles;
std::vector< unsigned int > nHoles;
std::vector< int > nClusters;
std::vector< std::vector<AFPTrack_v2::AFPClusterLink_t> > clusters;
std::vector< float > chi2;
......
......@@ -159,7 +159,7 @@ namespace xAOD {
*
* @return Number of empty pixels that the track passes through
*/
int nHoles() const;
unsigned int nHoles() const;
/**
......@@ -169,7 +169,7 @@ namespace xAOD {
*
* @param nHoles number of empty pixels that the track passes through
*/
void setNHoles (int nHoles);
void setNHoles (unsigned int nHoles);
/**
......
......@@ -155,7 +155,7 @@ namespace xAOD {
*
* @return Number of empty pixels that the track passes through
*/
int nHoles() const;
unsigned int nHoles() const;
/**
* @brief Set number of empty pixels that the track passes through.
......@@ -164,7 +164,7 @@ namespace xAOD {
*
* @param nHoles number of empty pixels that the track passes through
*/
void setNHoles (int nHoles);
void setNHoles (unsigned int nHoles);
/**
* @brief Number of clusters used to reconstruct the track.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment