Skip to content
Snippets Groups Projects

Make more DeMuon methods const

Merged Marco Clemencic requested to merge fix-muon-const into master
1 unresolved thread
1 file
+ 3
3
Compare changes
  • Side-by-side
  • Inline
@@ -173,7 +173,7 @@ namespace LHCb::Detector {
std::optional<TilePosition> position( Muon::TileID ) const { throw NotImplemented(); }
void CountDetEls() { throw NotImplemented(); }
std::string getStationName( int ) { throw NotImplemented(); }
std::string getStationName( int ) const { throw NotImplemented(); }
int gapsInRegion( const int, const int ) const { throw NotImplemented(); }
int gapsPerFE( const int, const int ) const { throw NotImplemented(); }
@@ -215,10 +215,10 @@ namespace LHCb::Detector {
// Returns the list of physical channels for a given chamber
std::vector<std::pair<Muon::FrontEndID, std::array<float, 4>>>
listOfPhysChannels( ROOT::Math::XYZPoint, ROOT::Math::XYZPoint, int, int ) {
listOfPhysChannels( ROOT::Math::XYZPoint, ROOT::Math::XYZPoint, int, int ) const {
throw NotImplemented();
}
std::optional<ROOT::Math::XYZPoint> getPCCenter( Muon::FrontEndID, int, int, int ) { throw NotImplemented(); }
std::optional<ROOT::Math::XYZPoint> getPCCenter( Muon::FrontEndID, int, int, int ) const { throw NotImplemented(); }
Muon::DAQHelper* getDAQInfo() { return &this->access()->m_daq; }
const Muon::DAQHelper* getDAQInfo() const { return &this->access()->m_daq; }
Loading