Skip to content

Commit

Permalink
Merge pull request #1514 from robbietuk/ECATScannerTilt
Browse files Browse the repository at this point in the history
ECAT Scanners use negative tilt
  • Loading branch information
KrisThielemans authored Oct 6, 2024
2 parents 6417022 + b8f7c14 commit e46a072
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
6 changes: 5 additions & 1 deletion documentation/release_6.3.htm
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,11 @@ <h3>New functionality</h3>


<h3>Changed functionality</h3>

<ul>
<li>
Default ECAT scanner configurations updated to use a negative intrinsic tilt.
</li>
</ul>

<h3>Bug fixes</h3>

Expand Down
8 changes: 4 additions & 4 deletions src/buildblock/Scanner.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ Scanner::Scanner(Type scanner_type)
7.0F,
6.75F,
3.12932F,
static_cast<float>(15. * _PI / 180),
static_cast<float>(-15. * _PI / 180),
1,
4,
8,
Expand All @@ -201,7 +201,7 @@ Scanner::Scanner(Type scanner_type)
7.0F,
6.75F,
3.375F,
static_cast<float>(15. * _PI / 180),
static_cast<float>(-15. * _PI / 180),
1,
4,
8,
Expand All @@ -228,7 +228,7 @@ Scanner::Scanner(Type scanner_type)
7.0F,
6.75F,
3.375F,
static_cast<float>(15. * _PI / 180),
static_cast<float>(-15. * _PI / 180),
3,
4,
8,
Expand All @@ -255,7 +255,7 @@ Scanner::Scanner(Type scanner_type)
7.0F,
6.25F,
1.650F,
static_cast<float>(13. * _PI / 180),
static_cast<float>(-13. * _PI / 180),
1,
8,
8,
Expand Down

0 comments on commit e46a072

Please sign in to comment.