Skip to content
Snippets Groups Projects

Track Monitoring histograms

Merged Bhagyashree Pagare requested to merge velomon_master_dd4hep into master
Files
3
@@ -18,6 +18,7 @@
#include "GaudiKernel/IAlgTool.h"
#include "IHitExpectation.h"
/** @class IHitExpectation IDetailedHitExpectation.h TrackInterfaces/IDetailedHitExpectation
*
* How many hits (of a given type) do we expect on a track ?
@@ -32,8 +33,10 @@ struct IDetailedHitExpectation : extend_interfaces<IAlgTool> {
*/
struct DetailedLayerInfo {
LHCb::LHCbID id{}; // = 0; ///< detector-specific ID identifying layer/sensor/...
unsigned int global_id{}; // detector specific ID identifying a group of layer/sensor/...
bool found = false; ///< bool indicating if hit was found in layer/sensor/...
constexpr DetailedLayerInfo( LHCb::LHCbID _id, bool _found ) : id( _id ), found( _found ) {}
constexpr DetailedLayerInfo( LHCb::LHCbID _id, unsigned int _global_id, bool _found )
: id( _id ), global_id( _global_id ), found( _found ) {}
};
using DetailedInfo = std::vector<DetailedLayerInfo>;
Loading