Skip to content

Commit 5b17735

Browse files
authored
Add method to specify dead phi region in layer
Added method to define a dead region in phi for a layer.
1 parent 044d08f commit 5b17735

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

ALICE3/Core/FastTracker.h

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,11 @@ class FastTracker
4242

4343
// Layer and layer configuration
4444
void AddLayer(TString name, float r, float z, float x0, float xrho, float resRPhi = 0.0f, float resZ = 0.0f, float eff = 0.0f, int type = 0);
45+
/// Add a dead region in phi for a specific layer
46+
/// \param layerName Name of the layer to modify
47+
/// \param phiStart Start angle of the dead region (in radians)
48+
/// \param phiEnd End angle of the dead region (in radians)
49+
void addDeadPhiRegionInLayer(const std::string& layerName, float phiStart, float phiEnd);
4550
DetLayer GetLayer(const int layer, bool ignoreBarrelLayers = true) const;
4651
std::vector<DetLayer> GetLayers() const { return layers; }
4752
int GetLayerIndex(const std::string& name) const;

0 commit comments

Comments
 (0)