Hadronic Cross Section Biasing by Volume

Hi, I have successfully implemented Hadronic Cross Section Biasing but I wanted to apply this only to a certain volume of my geometry and could not find a way to do so.

For example radioactive biasing can be generated in specific volumes, as shown in the manual:
theRadioactiveDecay->SelectAllVolumes();
theRadioactiveDecay->DeselectAllVolumes();
G4LogicalVolume* aLogicalVolume; // Acquired by the user
theRadioactiveDecay->SelectVolume(aLogicalVolume);
theRadioactiveDecay->DeselectVolume(aLogicalVolume);

So I wanted to know if there is a similar function for G4MuonNuclearProcess() (SelectVolume() does not work for G4MuonNuclearProcess()), or do I have to change the hadronic cross section in another manner to be able to apply it only to certain volumes?

Thank You