Skip to content

Commit

Permalink
code-format performed
Browse files Browse the repository at this point in the history
  • Loading branch information
Suchandra authored and Suchandra committed Mar 9, 2022
1 parent 8869181 commit 4b85541
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions SimTracker/SiPhase2Digitizer/plugins/PSPDigitizerAlgorithm.cc
Original file line number Diff line number Diff line change
Expand Up @@ -61,10 +61,10 @@ bool PSPDigitizerAlgorithm::isAboveThreshold(const DigitizerUtility::SimHitInfo*
// Check whether the Hit is in the Inefficient Bias Rail Region
//
bool PSPDigitizerAlgorithm::isInBiasRailRegion(const PSimHit& hit) const {
constexpr float implant = 0.1467; // Implant length (1.467 mm)
constexpr float bRail = 0.00375; // Bias Rail region which causes inefficiency (37.5micron)
constexpr float implant = 0.1467; // Implant length (1.467 mm)
constexpr float bRail = 0.00375; // Bias Rail region which causes inefficiency (37.5micron)
// Do coordinate transformation of the local Y from module middle point considering 32 implants and 31 inter-impant regions with bias rail
constexpr float block_len = 16 * implant + 15.5 * bRail;
constexpr float block_len = 16 * implant + 15.5 * bRail;
constexpr float block_unit = implant + bRail;
float yin = hit.entryPoint().y() + block_len;
float yout = hit.exitPoint().y() + block_len;
Expand Down

0 comments on commit 4b85541

Please sign in to comment.