Skip to content
Snippets Groups Projects
Commit 5d80049f authored by Hangyi Wu's avatar Hangyi Wu
Browse files

remove m_clusterSize as a duplicate of m_size

parent a6706943
No related branches found
No related tags found
2 merge requests!3795Draft: Sazak monitoring dev tae,!3559UThit position methods
......@@ -89,7 +89,7 @@ namespace LHCb::Pr::UT {
hitHandler.emplace_back( *aSector, fullChan.idx, strip, aWord.fracStripBits(),
#endif
Detector::UT::ChannelID{fullChan.chanID + strip}, aWord.pseudoSizeBits(),
aWord.hasHighThreshold(), aWord.clusterSize(), aWord.clusterCharge() );
aWord.hasHighThreshold(), aWord.clusterCharge() );
}
};
switch ( ::UTDAQ::version{bank->version()} ) {
......
......@@ -59,7 +59,7 @@ namespace UT {
UT::Hit& emplace_back( const DeUTSector& aSector, unsigned int fullChanIdx, unsigned int strip, double fracStrip,
LHCb::Detector::UT::ChannelID chanID, unsigned int size, bool highThreshold,
unsigned int clusterSize, unsigned int clusterCharge ) {
unsigned int clusterCharge ) {
double dxDy{0};
double dzDy{0};
double xAtYEq0{0};
......@@ -94,7 +94,7 @@ namespace UT {
// add a new hit
auto& hit = m_allhits.emplace_back( chanID, size, highThreshold, dxDy, xAtYEq0, zAtYEq0, yBegin, yEnd, cos, error,
strip, fracStrip, clusterSize, clusterCharge );
strip, fracStrip, clusterCharge );
// increment the end index for current range
++indices.second;
return hit;
......
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