<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://pct.wiki.uib.no/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Hpe090</id>
	<title>pCT - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://pct.wiki.uib.no/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Hpe090"/>
	<link rel="alternate" type="text/html" href="https://pct.wiki.uib.no/Special:Contributions/Hpe090"/>
	<updated>2026-05-07T04:53:07Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.44.2</generator>
	<entry>
		<id>https://pct.wiki.uib.no/index.php?title=Cluster_convolution_for_GATE&amp;diff=541</id>
		<title>Cluster convolution for GATE</title>
		<link rel="alternate" type="text/html" href="https://pct.wiki.uib.no/index.php?title=Cluster_convolution_for_GATE&amp;diff=541"/>
		<updated>2019-04-01T11:56:02Z</updated>

		<summary type="html">&lt;p&gt;Hpe090: Added code to take edep arguments&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;In her MSc project, Silje Grimstad made a filtered library of the clusters from the summer beamtest in Heidelberg.&lt;br /&gt;
&lt;br /&gt;
The result is ~15k Helium clusters stored as x/y arrays in a [[:File:database_final.zip|ROOT file included here]].&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! x_mean&lt;br /&gt;
! y_mean&lt;br /&gt;
! size&lt;br /&gt;
! hit_array&lt;br /&gt;
! height&lt;br /&gt;
! width&lt;br /&gt;
! x_start&lt;br /&gt;
! y_start&lt;br /&gt;
! i_event&lt;br /&gt;
! combined&lt;br /&gt;
|-&lt;br /&gt;
| float&lt;br /&gt;
| float&lt;br /&gt;
| int&lt;br /&gt;
| list&amp;lt;int&amp;gt;&lt;br /&gt;
| int&lt;br /&gt;
| int&lt;br /&gt;
| int&lt;br /&gt;
| int&lt;br /&gt;
| int&lt;br /&gt;
| bool&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
A random sample of 9 clusters is shown below:&lt;br /&gt;
&lt;br /&gt;
[[File:9_clusters.png|600px]]&lt;br /&gt;
&lt;br /&gt;
We want to convolute a GATE simulation with clusters from this library. For each hit in the MC data, we pick a random cluster from the library and draw it around the hit position.&lt;br /&gt;
To do this, use the code at the bottom, with the following result:&lt;br /&gt;
&lt;br /&gt;
[[File:original_vs_convoluted_hitmap.PNG|1000px]]&lt;br /&gt;
&lt;br /&gt;
Below is example code to perform the diffusion on-fly using a Hits container class with Hit objects (x,y,layer,edep,eventID).&lt;br /&gt;
For more information about the implementation see [https://github.com/HelgeEgil/focal GitHub].&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;cpp&amp;quot;&amp;gt;&lt;br /&gt;
#include &amp;lt;TTree.h&amp;gt;&lt;br /&gt;
#include &amp;lt;TFile.h&amp;gt;&lt;br /&gt;
#include &amp;lt;TRandom3.h&amp;gt;&lt;br /&gt;
#include &amp;lt;list&amp;gt;&lt;br /&gt;
#include &amp;lt;vector&amp;gt;&lt;br /&gt;
&lt;br /&gt;
using namespace std;&lt;br /&gt;
&lt;br /&gt;
void           makeSortedClusterDatabase();&lt;br /&gt;
Hits         * diffuseHits(TRandom3 * gRandom, Hits * singlePixelHits);&lt;br /&gt;
&lt;br /&gt;
TTree        * CDB_treeCluster;&lt;br /&gt;
list&amp;lt;Int_t&amp;gt;  * CDB_hit_array = 0;&lt;br /&gt;
TBranch      * CDB_b_hit_array;&lt;br /&gt;
TTreeIndex   * CDB_index;&lt;br /&gt;
Int_t          CDB_clusterSize;&lt;br /&gt;
Double_t       CDB_x_mean, CDB_y_mean;&lt;br /&gt;
Int_t          CDB_sortIndex[50];&lt;br /&gt;
TFile        * CDB_fCluster; &lt;br /&gt;
&lt;br /&gt;
void makeSortedClusterDatabase() {&lt;br /&gt;
   // From GlobalConstants/MaterialConstants.C / .h&lt;br /&gt;
&lt;br /&gt;
   Int_t lastClusterSize = -1;&lt;br /&gt;
   CDB_fCluster = new TFile(&amp;quot;Data/ClusterSizes/ALPIDE/database_final.root&amp;quot;, &amp;quot;READ&amp;quot;);&lt;br /&gt;
   CDB_treeCluster = (TTree*) CDB_fCluster-&amp;gt;Get(&amp;quot;database&amp;quot;);&lt;br /&gt;
   CDB_treeCluster-&amp;gt;SetBranchAddress(&amp;quot;size&amp;quot;, &amp;amp;CDB_clusterSize);&lt;br /&gt;
   CDB_treeCluster-&amp;gt;SetBranchAddress(&amp;quot;x_mean&amp;quot;, &amp;amp;CDB_x_mean);&lt;br /&gt;
   CDB_treeCluster-&amp;gt;SetBranchAddress(&amp;quot;y_mean&amp;quot;, &amp;amp;CDB_y_mean);&lt;br /&gt;
   CDB_treeCluster-&amp;gt;SetBranchAddress(&amp;quot;hit_array&amp;quot;, &amp;amp;CDB_hit_array, &amp;amp;CDB_b_hit_array);&lt;br /&gt;
&lt;br /&gt;
   // Sort clusters based on cluster size&lt;br /&gt;
   for (int i=0; i&amp;lt;50; i++) CDB_sortIndex[i] = -1;&lt;br /&gt;
   CDB_treeCluster-&amp;gt;BuildIndex(&amp;quot;size&amp;quot;);&lt;br /&gt;
   CDB_index = (TTreeIndex*) CDB_treeCluster-&amp;gt;GetTreeIndex();&lt;br /&gt;
   for (int i=0; i&amp;lt;CDB_index-&amp;gt;GetN()-1; i++) {&lt;br /&gt;
      Long64_t local = CDB_treeCluster-&amp;gt;LoadTree(CDB_index-&amp;gt;GetIndex()[i]);&lt;br /&gt;
      CDB_treeCluster-&amp;gt;GetEntry(local);&lt;br /&gt;
      if (lastClusterSize &amp;lt; 0 || lastClusterSize != CDB_clusterSize) {&lt;br /&gt;
         CDB_sortIndex[CDB_clusterSize] = i;&lt;br /&gt;
         lastClusterSize = CDB_clusterSize;&lt;br /&gt;
      }&lt;br /&gt;
   }&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
Hits * diffuseHits(TRandom3 *gRandom, Hits * singlePixelHits) {&lt;br /&gt;
   // From HelperTools/getTracks.C&lt;br /&gt;
&lt;br /&gt;
   Int_t          nHits = singlePixelHits-&amp;gt;GetEntriesFast();&lt;br /&gt;
   Hits         * diffusedHits = new Hits();&lt;br /&gt;
   Int_t          x, y, outX, outY, layer, cs, eventID, idx_x, binPos;&lt;br /&gt;
   Float_t        edep;&lt;br /&gt;
   Int_t          randomClusterIdx;&lt;br /&gt;
&lt;br /&gt;
   for (Int_t h=0; h&amp;lt;nHits; h++) {&lt;br /&gt;
      x = singlePixelHits-&amp;gt;getX(h);&lt;br /&gt;
      y = singlePixelHits-&amp;gt;getY(h);&lt;br /&gt;
      layer = singlePixelHits-&amp;gt;getLayer(h);&lt;br /&gt;
      edep = singlePixelHits-&amp;gt;getEdep(h);&lt;br /&gt;
      eventID = singlePixelHits-&amp;gt;getEventID(h);&lt;br /&gt;
&lt;br /&gt;
      // The correspondence between CS and Edep [keV/um] is calculated from Ganesh&#039;s NIM A Proceedings article.&lt;br /&gt;
      cs = 4.2267 * pow(edep, 0.6500) + 0.5;&lt;br /&gt;
    &lt;br /&gt;
      // To keep any outliers within the tabulated clusters in the database&lt;br /&gt;
      if (cs&amp;lt;2) cs=2;&lt;br /&gt;
      if (cs&amp;gt;=27) cs=26;&lt;br /&gt;
&lt;br /&gt;
      randomClusterIdx = gRandom-&amp;gt;Integer(CDB_sortIndex[cs+1] - CDB_sortIndex[cs]) + CDB_sortIndex[cs];&lt;br /&gt;
      CDB_treeCluster-&amp;gt;GetEntry(CDB_treeCluster-&amp;gt;LoadTree(CDB_index-&amp;gt;GetIndex()[randomClusterIdx]));&lt;br /&gt;
&lt;br /&gt;
      idx_x = 0;&lt;br /&gt;
      Int_t thisCS = 0;&lt;br /&gt;
      for (Int_t n : *CDB_hit_array) {&lt;br /&gt;
         for (Int_t binPosPow = 0; binPosPow &amp;lt; 10; binPosPow++) {&lt;br /&gt;
            binPos = pow(2, binPosPow);&lt;br /&gt;
            if (binPos &amp;amp; n) {&lt;br /&gt;
               outX = x + (idx_x - CDB_x_mean) + 0.5;&lt;br /&gt;
               outY = y + (binPosPow - CDB_y_mean) + 0.5;&lt;br /&gt;
               diffusedHits-&amp;gt;appendPoint(outX, outY, layer, eventID, edep/CDB_clusterSize); &lt;br /&gt;
            }&lt;br /&gt;
         }&lt;br /&gt;
      idx_x++;&lt;br /&gt;
      }&lt;br /&gt;
   }&lt;br /&gt;
   return diffusedHits;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;/div&gt;</summary>
		<author><name>Hpe090</name></author>
	</entry>
	<entry>
		<id>https://pct.wiki.uib.no/index.php?title=File:Database_final.zip&amp;diff=540</id>
		<title>File:Database final.zip</title>
		<link rel="alternate" type="text/html" href="https://pct.wiki.uib.no/index.php?title=File:Database_final.zip&amp;diff=540"/>
		<updated>2019-04-01T11:51:01Z</updated>

		<summary type="html">&lt;p&gt;Hpe090: File uploaded with MsUpload&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;File uploaded with MsUpload&lt;/div&gt;</summary>
		<author><name>Hpe090</name></author>
	</entry>
	<entry>
		<id>https://pct.wiki.uib.no/index.php?title=Documentation&amp;diff=539</id>
		<title>Documentation</title>
		<link rel="alternate" type="text/html" href="https://pct.wiki.uib.no/index.php?title=Documentation&amp;diff=539"/>
		<updated>2019-04-01T11:41:27Z</updated>

		<summary type="html">&lt;p&gt;Hpe090: /* Software installation */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Main Page]] -&amp;gt; [[Documentation]]&lt;br /&gt;
&lt;br /&gt;
== Mailing lists and collaborative tools ==&lt;br /&gt;
* Project web page: has to come&lt;br /&gt;
* General mailing list: pCT@uib.no&lt;br /&gt;
* [https://pctbergen.slack.com Slack project]&lt;br /&gt;
&lt;br /&gt;
== Software installation ==&lt;br /&gt;
* [[Software tutorial at IFT]]&lt;br /&gt;
* [[ROOT installation]]&lt;br /&gt;
* [[Geant 4 installation]]&lt;br /&gt;
* [[Gate installation]]&lt;br /&gt;
* [[FLUKA installation]]&lt;br /&gt;
* [[Insight Toolkit (ITK) installation]]&lt;br /&gt;
*: https://itk.org/&lt;br /&gt;
*: https://github.com/InsightSoftwareConsortium/ITK&lt;br /&gt;
* [[Reconstruction Toolkit (RTK) installation]]&lt;br /&gt;
*: http://www.openrtk.org/&lt;br /&gt;
*: https://github.com/SimonRit/RTK&lt;br /&gt;
*[[DTC toolkit|DTC Toolkit for reconstruction]]&lt;br /&gt;
*: [[Software for design optimization|User guide and tutorial]]&lt;br /&gt;
*: https://github.com/HelgeEgil/focal (to be merged into gitlab)&lt;br /&gt;
*: [[Cluster convolution for GATE]]&lt;br /&gt;
* [[Visualization Toolkit (VTK) Installation and usage]]&lt;br /&gt;
*: http://www.vtk.org/&lt;br /&gt;
*: https://github.com/Kitware/VTK&lt;br /&gt;
&lt;br /&gt;
== Software repository ==&lt;br /&gt;
We use the &#039;&#039;&#039;gitlab&#039;&#039;&#039; server hosted by IT of University of Bergen. We start with a repository per &#039;&#039;work package (wp)&#039;&#039;. As there is overlap in terms of software, this structure might change in the future. Log in with your UiB account, then the administrators will give you access to the pCT group. If you don&#039;t have an account yet, get in contact with the group over the general [[Documentation#Mailing lists and collaborative tools | channels]]. There might be an admin mailing list later.&lt;br /&gt;
&lt;br /&gt;
* [https://gitlab.uib.no/pct UiB gitlab web interface].&lt;br /&gt;
&lt;br /&gt;
Further information:&lt;br /&gt;
* [https://docs.gitlab.com/ce/gitlab-basics/README.html Gitlab basics]&lt;br /&gt;
* [https://docs.gitlab.com/ee/workflow/README.html  Gitlab workflow]&lt;br /&gt;
&lt;br /&gt;
==== [[Gitlab best practice]] ====&lt;br /&gt;
==== [[Gitlab Developer FAQ]] ====&lt;br /&gt;
==== [[Gitlab Master FAQ]] ====&lt;br /&gt;
&lt;br /&gt;
== Development workflow ==&lt;br /&gt;
Every logged-in user can access the main repository, however only a small group of administrators has write access. To contribute, a user creates a &#039;&#039;&#039;fork&#039;&#039;&#039; (see [[Documentation#Creating_a_project_fork | here]]) from the repository. This is a repository copy in the Gitlab system where a single developer or a group of developers have full access.&lt;br /&gt;
&lt;br /&gt;
A local copy of the repository is required on the working machine in order to work on the project. This copy is referred to be a &#039;&#039;&#039;clone&#039;&#039;&#039; (see [[Documentation#Making_local_working_copy | here]]).&lt;br /&gt;
&lt;br /&gt;
=== Default branch structure ===&lt;br /&gt;
&lt;br /&gt;
The main repository has the following branches:&lt;br /&gt;
* &#039;&#039;&#039;production&#039;&#039;&#039;: the latest production code, in this branch we have release tags&lt;br /&gt;
* &#039;&#039;&#039;master&#039;&#039;&#039;: the latest stable release&lt;br /&gt;
* &#039;&#039;&#039;dev&#039;&#039;&#039;: the development branch&lt;br /&gt;
&lt;br /&gt;
In addition to those main branches there can be &#039;&#039;feature&#039;&#039; branches where development happens detached from the main branches. A &#039;&#039;feature&#039;&#039; branch is based on the &#039;&#039;dev&#039;&#039; branch and has a limited lifetime.&lt;br /&gt;
&lt;br /&gt;
=== Creating a project fork ===&lt;br /&gt;
A &#039;&#039;project fork&#039;&#039; or &#039;&#039;repository fork&#039;&#039; is a copy of the original repository where a user or a group of users has/have full control. All development in our project is carried out in the individual forks. Branches of project forks are merged back into the main repository by &#039;&#039;&#039;merge requests&#039;&#039;&#039;, preferably via &#039;&#039;&#039;fast forward&#039;&#039;&#039; merges. That requires developers to rebase project forks to the main repository and resolve all conflicts before requesting a merge.&lt;br /&gt;
&lt;br /&gt;
[https://docs.gitlab.com/ce/gitlab-basics/fork-project.html How to fork a project]&lt;br /&gt;
&lt;br /&gt;
Your repository fork is your sandbox, you can do whatever you want. Unless you have your own rules at hand right now you can apply the following:&lt;br /&gt;
* leave the &#039;&#039;master&#039;&#039; branch in sync with the main repository, do not make commits to it&lt;br /&gt;
* commit your changes to the &#039;&#039;dev&#039;&#039; branch&lt;br /&gt;
* if you start a new feature, and it&#039;s expected to take a while, make a &#039;&#039;feature&#039;&#039; branch, e.g. &#039;&#039;dev-feature&#039;&#039; and give the feature a name&lt;br /&gt;
* synchronize regularly to the main repository by rebasing (tutorial coming soon)&lt;br /&gt;
&lt;br /&gt;
=== Making local working copy ===&lt;br /&gt;
A project is utilized through a local working copy referred to be a &#039;&#039;clone&#039;&#039;. The project can be cloned from either the main repository in the group space or the fork in the user space depending on the role.&lt;br /&gt;
&lt;br /&gt;
In the examples replace &#039;&#039;user&#039;&#039; and &#039;&#039;wpn&#039;&#039; (e.g. wp7) appropriately.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note&#039;&#039;&#039;: the gitlab offers two modes for the link to be cloned, you can choose &#039;&#039;ssh&#039;&#039; (default setting) or &#039;&#039;https&#039;&#039;. If you can not clone with the proposed default link, try option &#039;&#039;https://&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
==== From the main repository ====&lt;br /&gt;
The main repository is cloned like&lt;br /&gt;
    git clone https://gitlab.uib.no/pct/wpn.git&lt;br /&gt;
&lt;br /&gt;
The upstream link can be changed later to any other repository like e.g. a development fork as follows (given the clone directory is the current working directory)&lt;br /&gt;
    git remote set-url origin https://user@gitlab.uib.no/user/wpn.git&lt;br /&gt;
&lt;br /&gt;
The originally cloned remote repository will get the identifier &#039;&#039;origin&#039;&#039; in your local clone.&lt;br /&gt;
&lt;br /&gt;
==== From development fork ====&lt;br /&gt;
Clone directly from your development fork&lt;br /&gt;
    git clone https://user@gitlab.uib.no/user/wpn.git&lt;br /&gt;
&lt;br /&gt;
This will create a local directory &#039;&#039;wpn&#039;&#039;, an optional argument after the link allows to change the directory name, e.g.&lt;br /&gt;
    git clone https://user@gitlab.uib.no/user/wpn.git mywork&lt;br /&gt;
&lt;br /&gt;
==== Multiple upstream repositories ====&lt;br /&gt;
As a more advanced option, multiple remote repositories can be added to the clone. All remote repositories are referenced through their identifiers, e.g. &#039;&#039;origin&#039;&#039; pointing to the fork and  &#039;&#039;pctgroup&#039;&#039; pointing to main repository (chosen as an example).&lt;br /&gt;
    git remote add pctgroup https://gitlab.uib.no/pct/wpn.git&lt;br /&gt;
&lt;br /&gt;
==== Check configured upstream repositories ====&lt;br /&gt;
The configured upstream repositories can be checked with&lt;br /&gt;
    git remote -v&lt;br /&gt;
This will display the identifier and link to the configured upstream repositories.&lt;br /&gt;
&lt;br /&gt;
=== Pushing to development fork ===&lt;br /&gt;
Once you have added commits to e.g. the &#039;&#039;&#039;dev&#039;&#039;&#039; branch, those commits can be &#039;&#039;pushed&#039;&#039; upstream to the fork (if &#039;&#039;origin&#039;&#039; refers to the fork)&lt;br /&gt;
    git push origin dev&lt;br /&gt;
&lt;br /&gt;
Or using the direct link&lt;br /&gt;
    git push https://user@gitlab.uib.no/user/wpn.git dev&lt;br /&gt;
&lt;br /&gt;
=== Pull/Merge request ===&lt;br /&gt;
All updates to the main repository are made via &#039;&#039;merge requests&#039;&#039; (github refers to them as &#039;&#039;pull requests&#039;&#039;). A merge request requires the code update to be in a mergable branch in a development fork.&lt;br /&gt;
&lt;br /&gt;
Merge request are also used widely to share &#039;&#039;work-in-progress&#039;&#039; with your colleagues and for code reviews. Mark such Merge request with &amp;quot;&#039;&#039;&#039;WIP:&#039;&#039;&#039;&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
==== Preparation ====&lt;br /&gt;
In order to avoid conflicts, first the fork has to be updated to the main repository. The idea behind this is that all potential conflicts can be resolved by the developer with the best knowledge about the matter, while the maintainer can simple merge &#039;&#039;fast-forward&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
This description expects &#039;&#039;origin&#039;&#039; pointing to the developers fork. All contributions are done to branch &#039;&#039;dev&#039;&#039;, thus it must be updated with the latest version of branch &#039;&#039;dev&#039;&#039; of main repository.&lt;br /&gt;
&lt;br /&gt;
# Fetch update from main repository&lt;br /&gt;
#: &amp;lt;pre&amp;gt; git fetch https://gitlab.uib.no/pct/wpn.git dev&amp;lt;/pre&amp;gt;&lt;br /&gt;
#:* the update is now stored in the local index, we have fetched branch &#039;&#039;dev&#039;&#039; of the main repository&lt;br /&gt;
#:* check the log of this latest fetch&lt;br /&gt;
#: &amp;lt;pre&amp;gt; git log FETCH_HEAD&amp;lt;/pre&amp;gt;&lt;br /&gt;
#:* FETCH_HEAD is a shorthand for the head of the last branch fetched and is valid only immediately after a fetch operation&lt;br /&gt;
# Rebase your development to the main repository, &#039;&#039;rebase&#039;&#039; means that all the new commits are done with respect to the tip of the specified branch. There can be &#039;&#039;merge conflicts&#039;&#039; which need to be resolved with appropriate changes and commits.&lt;br /&gt;
#: &amp;lt;pre&amp;gt; git rebase FETCH_HEAD dev&amp;lt;/pre&amp;gt;&lt;br /&gt;
#:* keep in mind that FETCH_HEAD is only temporarily valid, so you should do this immediately after &#039;&#039;fetch&#039;&#039; (&#039;&#039;log&#039;&#039; does not change anything)&lt;br /&gt;
#:* replace &#039;&#039;dev&#039;&#039; with appropriate branch name if other then &#039;&#039;dev&#039;&#039; is used; it is also possible to rebase a branch with other name to the remote branch, e.g.&lt;br /&gt;
#: &amp;lt;pre&amp;gt; git rebase FETCH_HEAD feature-name&amp;lt;/pre&amp;gt;&lt;br /&gt;
# Check your commits and commit messages, eventually &#039;&#039;squash&#039;&#039; (combine) or &#039;&#039;reword&#039;&#039;. This advanced option is described later.&lt;br /&gt;
# Push to fork. As the commit history has most likely been changed, the option &#039;&#039;-f&#039;&#039; (force) has to be used&lt;br /&gt;
#: &amp;lt;pre&amp;gt; git push -f origin dev &amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The branch &#039;&#039;dev&#039;&#039; in the fork is now ready for a merge request. The branch name can be adjusted, there is nothing preventing other branch names.&lt;br /&gt;
&lt;br /&gt;
==== Example workflow for a Merge request ====&lt;br /&gt;
# Go to your gitlab user space at [https://gitlab.uib.no/user https://gitlab.uib.no/user] (replace &#039;&#039;user&#039;&#039; appropriately).&lt;br /&gt;
# Find the project fork, e.g. in the list of projects associated with you from the upper main menu.&lt;br /&gt;
# In the line with the many columns regarding the repository, click on the &amp;quot;+&amp;quot;-symbol on the right hand side and choose &amp;quot;New merge request&amp;quot;&lt;br /&gt;
# Select project and branch for both source and target, and click &amp;quot;Compare branches and continue&amp;quot;. &#039;&#039;&#039;Remember&#039;&#039;&#039;: in almost all cases you have to merge to branch &#039;&#039;dev&#039;&#039; or other feature branch, only in very rare cases to branch &#039;&#039;master&#039;&#039;&lt;br /&gt;
# Review the list of commits in this merge request, give it a descriptive title and description, pick an assignee&lt;br /&gt;
# Submit the merge request&lt;br /&gt;
&lt;br /&gt;
=== Importing an external package ===&lt;br /&gt;
The project will use a couple of external packages which are hosted in a different master repository. Copies of such external packages can be added to the gitlab server under our project group to provide a consistent package.&lt;br /&gt;
&lt;br /&gt;
Here is a proposed workflow for importing a package which is already hosted in git.&lt;br /&gt;
# Create new repository in the pCT group or ask for creation, lets call it &#039;&#039;newPackage&#039;&#039;&lt;br /&gt;
# Fork the repository to your user space&lt;br /&gt;
# Clone the package you want to import&lt;br /&gt;
#:&amp;lt;pre&amp;gt; git clone &amp;lt;some_external_link&amp;gt; newPackage # we give it the new name&amp;lt;/pre&amp;gt;&lt;br /&gt;
#:&amp;lt;pre&amp;gt; cd newPackage&amp;lt;/pre&amp;gt;&lt;br /&gt;
# Redirect upstream URL to the fork in your gitlab user space&lt;br /&gt;
#:&amp;lt;pre&amp;gt; git remote set-url origin https://user@gitlab.uib.no/user/newPackage.git&amp;lt;/pre&amp;gt;&lt;br /&gt;
# Now make a forced push (option &#039;&#039;-f&#039;&#039;) to import the repository to your fork&lt;br /&gt;
#:&amp;lt;pre&amp;gt; git push -f origin&amp;lt;/pre&amp;gt;&lt;br /&gt;
# Create merge request to branch &#039;&#039;import&#039;&#039; (if not existing, &#039;&#039;master&#039;&#039; or any other appropriate branch) by following the instructions [[Documentation#Pull/Merge request | Pull/Merge request]]&lt;br /&gt;
&lt;br /&gt;
== User documentation ==&lt;/div&gt;</summary>
		<author><name>Hpe090</name></author>
	</entry>
	<entry>
		<id>https://pct.wiki.uib.no/index.php?title=Cluster_convolution_for_GATE&amp;diff=538</id>
		<title>Cluster convolution for GATE</title>
		<link rel="alternate" type="text/html" href="https://pct.wiki.uib.no/index.php?title=Cluster_convolution_for_GATE&amp;diff=538"/>
		<updated>2019-02-25T14:09:03Z</updated>

		<summary type="html">&lt;p&gt;Hpe090: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;In her MSc project, Silje Grimstad made a filtered library of the clusters from the summer beamtest in Heidelberg.&lt;br /&gt;
The result is ~15k Helium clusters stored as x/y arrays in a ROOT file:&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! x_mean&lt;br /&gt;
! y_mean&lt;br /&gt;
! size&lt;br /&gt;
! hit_array&lt;br /&gt;
! height&lt;br /&gt;
! width&lt;br /&gt;
! x_start&lt;br /&gt;
! y_start&lt;br /&gt;
! i_event&lt;br /&gt;
! combined&lt;br /&gt;
|-&lt;br /&gt;
| float&lt;br /&gt;
| float&lt;br /&gt;
| int&lt;br /&gt;
| list&amp;lt;int&amp;gt;&lt;br /&gt;
| int&lt;br /&gt;
| int&lt;br /&gt;
| int&lt;br /&gt;
| int&lt;br /&gt;
| int&lt;br /&gt;
| bool&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
A random sample of 9 clusters is shown below:&lt;br /&gt;
&lt;br /&gt;
[[File:9_clusters.png|600px]]&lt;br /&gt;
&lt;br /&gt;
We want to convolute a GATE simulation with clusters from this library. For each hit in the MC data, we pick a random cluster from the library and draw it around the hit position.&lt;br /&gt;
To do this, use the code at the bottom, with the following result:&lt;br /&gt;
&lt;br /&gt;
[[File:original_vs_convoluted_hitmap.PNG|1000px]]&lt;br /&gt;
&lt;br /&gt;
The needed cluster database for this is located at [https://github.com/HelgeEgil/focal/blob/master/DTCToolkit/Data/ClusterSizes/ALPIDE/database_combined_clusters_filter.root GitHib].&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;cpp&amp;quot;&amp;gt;&lt;br /&gt;
#include &amp;lt;TTree.h&amp;gt;&lt;br /&gt;
#include &amp;lt;TFile.h&amp;gt;&lt;br /&gt;
#include &amp;lt;TRandom3.h&amp;gt;&lt;br /&gt;
#include &amp;lt;list&amp;gt;&lt;br /&gt;
#include &amp;lt;vector&amp;gt;&lt;br /&gt;
&lt;br /&gt;
using namespace std;&lt;br /&gt;
&lt;br /&gt;
void convert_root_file() {&lt;br /&gt;
   TFile         *fCluster = new TFile(&amp;quot;database_combined_clusters_filter.root&amp;quot;, &amp;quot;READ&amp;quot;);&lt;br /&gt;
   TFile         *fSimulationIn = new TFile(&amp;quot;simulationToBeClustered.root&amp;quot;, &amp;quot;READ&amp;quot;);&lt;br /&gt;
   TFile         *fSimulationOut = new TFile(&amp;quot;simulationToBeClustered_clustered.root&amp;quot;, &amp;quot;recreate&amp;quot;);&lt;br /&gt;
   TTree         *treeCluster = (TTree*) fCluster-&amp;gt;Get(&amp;quot;database&amp;quot;);&lt;br /&gt;
   TTree         *treeSimulationIn  = (TTree*) fSimulationIn-&amp;gt;Get(&amp;quot;Hits&amp;quot;);&lt;br /&gt;
   TTree         *treeSimulationOut = new TTree(&amp;quot;Hits&amp;quot;, &amp;quot;Clustered GATE tree&amp;quot;);&lt;br /&gt;
&lt;br /&gt;
   Double_t       x_mean, y_mean;&lt;br /&gt;
   Int_t          randomClusterIdx, binPos, idx_x;&lt;br /&gt;
   list&amp;lt;Int_t&amp;gt;   *hit_array = 0;&lt;br /&gt;
   TBranch       *b_hit_array;&lt;br /&gt;
   TRandom3      *gRand = new TRandom3(0);&lt;br /&gt;
   Float_t        pixel_size = 0.02929;&lt;br /&gt;
   &lt;br /&gt;
   Float_t        x,y,z,outX, outY, outZ;&lt;br /&gt;
   Int_t          parentID, eventID, outEventID, outParentID, nClusters, timeInClockSpeed, PDGEncoding;&lt;br /&gt;
&lt;br /&gt;
   treeSimulationIn-&amp;gt;SetBranchAddress(&amp;quot;posX&amp;quot;,&amp;amp;x);&lt;br /&gt;
   treeSimulationIn-&amp;gt;SetBranchAddress(&amp;quot;posY&amp;quot;,&amp;amp;y);&lt;br /&gt;
   treeSimulationIn-&amp;gt;SetBranchAddress(&amp;quot;posZ&amp;quot;,&amp;amp;z);&lt;br /&gt;
   treeSimulationIn-&amp;gt;SetBranchAddress(&amp;quot;eventID&amp;quot;,&amp;amp;eventID);&lt;br /&gt;
   treeSimulationIn-&amp;gt;SetBranchAddress(&amp;quot;parentID&amp;quot;,&amp;amp;parentID);&lt;br /&gt;
   treeSimulationIn-&amp;gt;SetBranchAddress(&amp;quot;PDGEncoding&amp;quot;, &amp;amp;PDGEncoding);&lt;br /&gt;
&lt;br /&gt;
   treeSimulationOut-&amp;gt;Branch(&amp;quot;posX&amp;quot;, &amp;amp;outX, &amp;quot;posX/F&amp;quot;);&lt;br /&gt;
   treeSimulationOut-&amp;gt;Branch(&amp;quot;posY&amp;quot;, &amp;amp;outY, &amp;quot;posY/F&amp;quot;);&lt;br /&gt;
   treeSimulationOut-&amp;gt;Branch(&amp;quot;posZ&amp;quot;, &amp;amp;outZ, &amp;quot;posZ/F&amp;quot;);&lt;br /&gt;
   treeSimulationOut-&amp;gt;Branch(&amp;quot;eventID&amp;quot;, &amp;amp;outEventID, &amp;quot;eventID/I&amp;quot;);&lt;br /&gt;
   treeSimulationOut-&amp;gt;Branch(&amp;quot;parentID&amp;quot;, &amp;amp;outParentID, &amp;quot;parentID/I&amp;quot;);&lt;br /&gt;
   treeSimulationOut-&amp;gt;Branch(&amp;quot;clockTime&amp;quot;, &amp;amp;timeInClockSpeed, &amp;quot;clockTime/I&amp;quot;);&lt;br /&gt;
&lt;br /&gt;
   treeCluster-&amp;gt;SetBranchAddress(&amp;quot;x_mean&amp;quot;, &amp;amp;x_mean);&lt;br /&gt;
   treeCluster-&amp;gt;SetBranchAddress(&amp;quot;y_mean&amp;quot;, &amp;amp;y_mean);&lt;br /&gt;
   treeCluster-&amp;gt;SetBranchAddress(&amp;quot;hit_array&amp;quot;, &amp;amp;hit_array, &amp;amp;b_hit_array);&lt;br /&gt;
&lt;br /&gt;
   nClusters = treeCluster-&amp;gt;GetEntriesFast();&lt;br /&gt;
   randomClusterIdx = gRand-&amp;gt;Integer(nClusters);&lt;br /&gt;
   treeCluster-&amp;gt;GetEntry(randomClusterIdx);&lt;br /&gt;
&lt;br /&gt;
   for (Int_t i=0, N = treeSimulationIn-&amp;gt;GetEntries(); i&amp;lt;N; ++i) {&lt;br /&gt;
      treeSimulationIn-&amp;gt;GetEntry(i);&lt;br /&gt;
      &lt;br /&gt;
      timeInClockSpeed = 400 * eventID; // 10 us readout speed&lt;br /&gt;
      outParentID = parentID; // =0 for a primary particle, &amp;gt;0 for secondaries&lt;br /&gt;
      outEventID = eventID;&lt;br /&gt;
      outZ = z;&lt;br /&gt;
&lt;br /&gt;
      randomClusterIdx = gRand-&amp;gt;Integer(nClusters);&lt;br /&gt;
      treeCluster-&amp;gt;GetEntry(randomClusterIdx);&lt;br /&gt;
&lt;br /&gt;
      idx_x = 0;&lt;br /&gt;
      if (abs(PDGEncoding) == 2212) { // Only apply this for protons&lt;br /&gt;
         for (Int_t n : *hit_array) { // loop x&lt;br /&gt;
            for (int binPosPow = 0; binPosPow &amp;lt; 10; binPosPow++) { // loop y&lt;br /&gt;
               binPos = pow(2, binPosPow);&lt;br /&gt;
               if (binPos &amp;amp; n) {&lt;br /&gt;
                  outX = x + (idx_x - x_mean) * pixel_size;&lt;br /&gt;
                  outY = y + (binPosPow - y_mean) * pixel_size;&lt;br /&gt;
                  treeSimulationOut-&amp;gt;Fill();&lt;br /&gt;
               }&lt;br /&gt;
            }&lt;br /&gt;
            idx_x++;&lt;br /&gt;
         }&lt;br /&gt;
      }&lt;br /&gt;
   }&lt;br /&gt;
&lt;br /&gt;
   treeSimulationOut-&amp;gt;Write();&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;/div&gt;</summary>
		<author><name>Hpe090</name></author>
	</entry>
	<entry>
		<id>https://pct.wiki.uib.no/index.php?title=Cluster_convolution_for_GATE&amp;diff=537</id>
		<title>Cluster convolution for GATE</title>
		<link rel="alternate" type="text/html" href="https://pct.wiki.uib.no/index.php?title=Cluster_convolution_for_GATE&amp;diff=537"/>
		<updated>2019-02-25T14:08:54Z</updated>

		<summary type="html">&lt;p&gt;Hpe090: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;In her MSc project, Silje Grimstad made a filtered library of the clusters from the summer beamtest in Heidelberg.&lt;br /&gt;
The result is ~15k Helium clusters stored as a x/y array in a ROOT file:&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! x_mean&lt;br /&gt;
! y_mean&lt;br /&gt;
! size&lt;br /&gt;
! hit_array&lt;br /&gt;
! height&lt;br /&gt;
! width&lt;br /&gt;
! x_start&lt;br /&gt;
! y_start&lt;br /&gt;
! i_event&lt;br /&gt;
! combined&lt;br /&gt;
|-&lt;br /&gt;
| float&lt;br /&gt;
| float&lt;br /&gt;
| int&lt;br /&gt;
| list&amp;lt;int&amp;gt;&lt;br /&gt;
| int&lt;br /&gt;
| int&lt;br /&gt;
| int&lt;br /&gt;
| int&lt;br /&gt;
| int&lt;br /&gt;
| bool&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
A random sample of 9 clusters is shown below:&lt;br /&gt;
&lt;br /&gt;
[[File:9_clusters.png|600px]]&lt;br /&gt;
&lt;br /&gt;
We want to convolute a GATE simulation with clusters from this library. For each hit in the MC data, we pick a random cluster from the library and draw it around the hit position.&lt;br /&gt;
To do this, use the code at the bottom, with the following result:&lt;br /&gt;
&lt;br /&gt;
[[File:original_vs_convoluted_hitmap.PNG|1000px]]&lt;br /&gt;
&lt;br /&gt;
The needed cluster database for this is located at [https://github.com/HelgeEgil/focal/blob/master/DTCToolkit/Data/ClusterSizes/ALPIDE/database_combined_clusters_filter.root GitHib].&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;cpp&amp;quot;&amp;gt;&lt;br /&gt;
#include &amp;lt;TTree.h&amp;gt;&lt;br /&gt;
#include &amp;lt;TFile.h&amp;gt;&lt;br /&gt;
#include &amp;lt;TRandom3.h&amp;gt;&lt;br /&gt;
#include &amp;lt;list&amp;gt;&lt;br /&gt;
#include &amp;lt;vector&amp;gt;&lt;br /&gt;
&lt;br /&gt;
using namespace std;&lt;br /&gt;
&lt;br /&gt;
void convert_root_file() {&lt;br /&gt;
   TFile         *fCluster = new TFile(&amp;quot;database_combined_clusters_filter.root&amp;quot;, &amp;quot;READ&amp;quot;);&lt;br /&gt;
   TFile         *fSimulationIn = new TFile(&amp;quot;simulationToBeClustered.root&amp;quot;, &amp;quot;READ&amp;quot;);&lt;br /&gt;
   TFile         *fSimulationOut = new TFile(&amp;quot;simulationToBeClustered_clustered.root&amp;quot;, &amp;quot;recreate&amp;quot;);&lt;br /&gt;
   TTree         *treeCluster = (TTree*) fCluster-&amp;gt;Get(&amp;quot;database&amp;quot;);&lt;br /&gt;
   TTree         *treeSimulationIn  = (TTree*) fSimulationIn-&amp;gt;Get(&amp;quot;Hits&amp;quot;);&lt;br /&gt;
   TTree         *treeSimulationOut = new TTree(&amp;quot;Hits&amp;quot;, &amp;quot;Clustered GATE tree&amp;quot;);&lt;br /&gt;
&lt;br /&gt;
   Double_t       x_mean, y_mean;&lt;br /&gt;
   Int_t          randomClusterIdx, binPos, idx_x;&lt;br /&gt;
   list&amp;lt;Int_t&amp;gt;   *hit_array = 0;&lt;br /&gt;
   TBranch       *b_hit_array;&lt;br /&gt;
   TRandom3      *gRand = new TRandom3(0);&lt;br /&gt;
   Float_t        pixel_size = 0.02929;&lt;br /&gt;
   &lt;br /&gt;
   Float_t        x,y,z,outX, outY, outZ;&lt;br /&gt;
   Int_t          parentID, eventID, outEventID, outParentID, nClusters, timeInClockSpeed, PDGEncoding;&lt;br /&gt;
&lt;br /&gt;
   treeSimulationIn-&amp;gt;SetBranchAddress(&amp;quot;posX&amp;quot;,&amp;amp;x);&lt;br /&gt;
   treeSimulationIn-&amp;gt;SetBranchAddress(&amp;quot;posY&amp;quot;,&amp;amp;y);&lt;br /&gt;
   treeSimulationIn-&amp;gt;SetBranchAddress(&amp;quot;posZ&amp;quot;,&amp;amp;z);&lt;br /&gt;
   treeSimulationIn-&amp;gt;SetBranchAddress(&amp;quot;eventID&amp;quot;,&amp;amp;eventID);&lt;br /&gt;
   treeSimulationIn-&amp;gt;SetBranchAddress(&amp;quot;parentID&amp;quot;,&amp;amp;parentID);&lt;br /&gt;
   treeSimulationIn-&amp;gt;SetBranchAddress(&amp;quot;PDGEncoding&amp;quot;, &amp;amp;PDGEncoding);&lt;br /&gt;
&lt;br /&gt;
   treeSimulationOut-&amp;gt;Branch(&amp;quot;posX&amp;quot;, &amp;amp;outX, &amp;quot;posX/F&amp;quot;);&lt;br /&gt;
   treeSimulationOut-&amp;gt;Branch(&amp;quot;posY&amp;quot;, &amp;amp;outY, &amp;quot;posY/F&amp;quot;);&lt;br /&gt;
   treeSimulationOut-&amp;gt;Branch(&amp;quot;posZ&amp;quot;, &amp;amp;outZ, &amp;quot;posZ/F&amp;quot;);&lt;br /&gt;
   treeSimulationOut-&amp;gt;Branch(&amp;quot;eventID&amp;quot;, &amp;amp;outEventID, &amp;quot;eventID/I&amp;quot;);&lt;br /&gt;
   treeSimulationOut-&amp;gt;Branch(&amp;quot;parentID&amp;quot;, &amp;amp;outParentID, &amp;quot;parentID/I&amp;quot;);&lt;br /&gt;
   treeSimulationOut-&amp;gt;Branch(&amp;quot;clockTime&amp;quot;, &amp;amp;timeInClockSpeed, &amp;quot;clockTime/I&amp;quot;);&lt;br /&gt;
&lt;br /&gt;
   treeCluster-&amp;gt;SetBranchAddress(&amp;quot;x_mean&amp;quot;, &amp;amp;x_mean);&lt;br /&gt;
   treeCluster-&amp;gt;SetBranchAddress(&amp;quot;y_mean&amp;quot;, &amp;amp;y_mean);&lt;br /&gt;
   treeCluster-&amp;gt;SetBranchAddress(&amp;quot;hit_array&amp;quot;, &amp;amp;hit_array, &amp;amp;b_hit_array);&lt;br /&gt;
&lt;br /&gt;
   nClusters = treeCluster-&amp;gt;GetEntriesFast();&lt;br /&gt;
   randomClusterIdx = gRand-&amp;gt;Integer(nClusters);&lt;br /&gt;
   treeCluster-&amp;gt;GetEntry(randomClusterIdx);&lt;br /&gt;
&lt;br /&gt;
   for (Int_t i=0, N = treeSimulationIn-&amp;gt;GetEntries(); i&amp;lt;N; ++i) {&lt;br /&gt;
      treeSimulationIn-&amp;gt;GetEntry(i);&lt;br /&gt;
      &lt;br /&gt;
      timeInClockSpeed = 400 * eventID; // 10 us readout speed&lt;br /&gt;
      outParentID = parentID; // =0 for a primary particle, &amp;gt;0 for secondaries&lt;br /&gt;
      outEventID = eventID;&lt;br /&gt;
      outZ = z;&lt;br /&gt;
&lt;br /&gt;
      randomClusterIdx = gRand-&amp;gt;Integer(nClusters);&lt;br /&gt;
      treeCluster-&amp;gt;GetEntry(randomClusterIdx);&lt;br /&gt;
&lt;br /&gt;
      idx_x = 0;&lt;br /&gt;
      if (abs(PDGEncoding) == 2212) { // Only apply this for protons&lt;br /&gt;
         for (Int_t n : *hit_array) { // loop x&lt;br /&gt;
            for (int binPosPow = 0; binPosPow &amp;lt; 10; binPosPow++) { // loop y&lt;br /&gt;
               binPos = pow(2, binPosPow);&lt;br /&gt;
               if (binPos &amp;amp; n) {&lt;br /&gt;
                  outX = x + (idx_x - x_mean) * pixel_size;&lt;br /&gt;
                  outY = y + (binPosPow - y_mean) * pixel_size;&lt;br /&gt;
                  treeSimulationOut-&amp;gt;Fill();&lt;br /&gt;
               }&lt;br /&gt;
            }&lt;br /&gt;
            idx_x++;&lt;br /&gt;
         }&lt;br /&gt;
      }&lt;br /&gt;
   }&lt;br /&gt;
&lt;br /&gt;
   treeSimulationOut-&amp;gt;Write();&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;/div&gt;</summary>
		<author><name>Hpe090</name></author>
	</entry>
	<entry>
		<id>https://pct.wiki.uib.no/index.php?title=Cluster_convolution_for_GATE&amp;diff=536</id>
		<title>Cluster convolution for GATE</title>
		<link rel="alternate" type="text/html" href="https://pct.wiki.uib.no/index.php?title=Cluster_convolution_for_GATE&amp;diff=536"/>
		<updated>2019-02-25T14:05:28Z</updated>

		<summary type="html">&lt;p&gt;Hpe090: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;In her MSc project, Silje Grimstad made a filtered library of the clusters from the summer beamtest in Heidelberg.&lt;br /&gt;
The result is ~20k Helium clusters stored as a x/y array in a ROOT file:&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! x_mean&lt;br /&gt;
! y_mean&lt;br /&gt;
! size&lt;br /&gt;
! hit_array&lt;br /&gt;
! height&lt;br /&gt;
! width&lt;br /&gt;
! x_start&lt;br /&gt;
! y_start&lt;br /&gt;
! i_event&lt;br /&gt;
! combined&lt;br /&gt;
|-&lt;br /&gt;
| float&lt;br /&gt;
| float&lt;br /&gt;
| int&lt;br /&gt;
| list&amp;lt;int&amp;gt;&lt;br /&gt;
| int&lt;br /&gt;
| int&lt;br /&gt;
| int&lt;br /&gt;
| int&lt;br /&gt;
| int&lt;br /&gt;
| bool&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
A random sample of 9 clusters is shown below:&lt;br /&gt;
&lt;br /&gt;
[[File:9_clusters.png|600px]]&lt;br /&gt;
&lt;br /&gt;
We want to convolute a GATE simulation with clusters from this library. For each hit in the MC data, we pick a random cluster from the library and draw it around the hit position.&lt;br /&gt;
To do this, use the code at the bottom, with the following result:&lt;br /&gt;
&lt;br /&gt;
[[File:original_vs_convoluted_hitmap.PNG|1000px]]&lt;br /&gt;
&lt;br /&gt;
The needed cluster database for this is located at [https://github.com/HelgeEgil/focal/blob/master/DTCToolkit/Data/ClusterSizes/ALPIDE/database_combined_clusters_filter.root GitHib].&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;cpp&amp;quot;&amp;gt;&lt;br /&gt;
#include &amp;lt;TTree.h&amp;gt;&lt;br /&gt;
#include &amp;lt;TFile.h&amp;gt;&lt;br /&gt;
#include &amp;lt;TRandom3.h&amp;gt;&lt;br /&gt;
#include &amp;lt;list&amp;gt;&lt;br /&gt;
#include &amp;lt;vector&amp;gt;&lt;br /&gt;
&lt;br /&gt;
using namespace std;&lt;br /&gt;
&lt;br /&gt;
void convert_root_file() {&lt;br /&gt;
   TFile         *fCluster = new TFile(&amp;quot;database_combined_clusters_filter.root&amp;quot;, &amp;quot;READ&amp;quot;);&lt;br /&gt;
   TFile         *fSimulationIn = new TFile(&amp;quot;simulationToBeClustered.root&amp;quot;, &amp;quot;READ&amp;quot;);&lt;br /&gt;
   TFile         *fSimulationOut = new TFile(&amp;quot;simulationToBeClustered_clustered.root&amp;quot;, &amp;quot;recreate&amp;quot;);&lt;br /&gt;
   TTree         *treeCluster = (TTree*) fCluster-&amp;gt;Get(&amp;quot;database&amp;quot;);&lt;br /&gt;
   TTree         *treeSimulationIn  = (TTree*) fSimulationIn-&amp;gt;Get(&amp;quot;Hits&amp;quot;);&lt;br /&gt;
   TTree         *treeSimulationOut = new TTree(&amp;quot;Hits&amp;quot;, &amp;quot;Clustered GATE tree&amp;quot;);&lt;br /&gt;
&lt;br /&gt;
   Double_t       x_mean, y_mean;&lt;br /&gt;
   Int_t          randomClusterIdx, binPos, idx_x;&lt;br /&gt;
   list&amp;lt;Int_t&amp;gt;   *hit_array = 0;&lt;br /&gt;
   TBranch       *b_hit_array;&lt;br /&gt;
   TRandom3      *gRand = new TRandom3(0);&lt;br /&gt;
   Float_t        pixel_size = 0.02929;&lt;br /&gt;
   &lt;br /&gt;
   Float_t        x,y,z,outX, outY, outZ;&lt;br /&gt;
   Int_t          parentID, eventID, outEventID, outParentID, nClusters, timeInClockSpeed, PDGEncoding;&lt;br /&gt;
&lt;br /&gt;
   treeSimulationIn-&amp;gt;SetBranchAddress(&amp;quot;posX&amp;quot;,&amp;amp;x);&lt;br /&gt;
   treeSimulationIn-&amp;gt;SetBranchAddress(&amp;quot;posY&amp;quot;,&amp;amp;y);&lt;br /&gt;
   treeSimulationIn-&amp;gt;SetBranchAddress(&amp;quot;posZ&amp;quot;,&amp;amp;z);&lt;br /&gt;
   treeSimulationIn-&amp;gt;SetBranchAddress(&amp;quot;eventID&amp;quot;,&amp;amp;eventID);&lt;br /&gt;
   treeSimulationIn-&amp;gt;SetBranchAddress(&amp;quot;parentID&amp;quot;,&amp;amp;parentID);&lt;br /&gt;
   treeSimulationIn-&amp;gt;SetBranchAddress(&amp;quot;PDGEncoding&amp;quot;, &amp;amp;PDGEncoding);&lt;br /&gt;
&lt;br /&gt;
   treeSimulationOut-&amp;gt;Branch(&amp;quot;posX&amp;quot;, &amp;amp;outX, &amp;quot;posX/F&amp;quot;);&lt;br /&gt;
   treeSimulationOut-&amp;gt;Branch(&amp;quot;posY&amp;quot;, &amp;amp;outY, &amp;quot;posY/F&amp;quot;);&lt;br /&gt;
   treeSimulationOut-&amp;gt;Branch(&amp;quot;posZ&amp;quot;, &amp;amp;outZ, &amp;quot;posZ/F&amp;quot;);&lt;br /&gt;
   treeSimulationOut-&amp;gt;Branch(&amp;quot;eventID&amp;quot;, &amp;amp;outEventID, &amp;quot;eventID/I&amp;quot;);&lt;br /&gt;
   treeSimulationOut-&amp;gt;Branch(&amp;quot;parentID&amp;quot;, &amp;amp;outParentID, &amp;quot;parentID/I&amp;quot;);&lt;br /&gt;
   treeSimulationOut-&amp;gt;Branch(&amp;quot;clockTime&amp;quot;, &amp;amp;timeInClockSpeed, &amp;quot;clockTime/I&amp;quot;);&lt;br /&gt;
&lt;br /&gt;
   treeCluster-&amp;gt;SetBranchAddress(&amp;quot;x_mean&amp;quot;, &amp;amp;x_mean);&lt;br /&gt;
   treeCluster-&amp;gt;SetBranchAddress(&amp;quot;y_mean&amp;quot;, &amp;amp;y_mean);&lt;br /&gt;
   treeCluster-&amp;gt;SetBranchAddress(&amp;quot;hit_array&amp;quot;, &amp;amp;hit_array, &amp;amp;b_hit_array);&lt;br /&gt;
&lt;br /&gt;
   nClusters = treeCluster-&amp;gt;GetEntriesFast();&lt;br /&gt;
   randomClusterIdx = gRand-&amp;gt;Integer(nClusters);&lt;br /&gt;
   treeCluster-&amp;gt;GetEntry(randomClusterIdx);&lt;br /&gt;
&lt;br /&gt;
   for (Int_t i=0, N = treeSimulationIn-&amp;gt;GetEntries(); i&amp;lt;N; ++i) {&lt;br /&gt;
      treeSimulationIn-&amp;gt;GetEntry(i);&lt;br /&gt;
      &lt;br /&gt;
      timeInClockSpeed = 400 * eventID; // 10 us readout speed&lt;br /&gt;
      outParentID = parentID; // =0 for a primary particle, &amp;gt;0 for secondaries&lt;br /&gt;
      outEventID = eventID;&lt;br /&gt;
      outZ = z;&lt;br /&gt;
&lt;br /&gt;
      randomClusterIdx = gRand-&amp;gt;Integer(nClusters);&lt;br /&gt;
      treeCluster-&amp;gt;GetEntry(randomClusterIdx);&lt;br /&gt;
&lt;br /&gt;
      idx_x = 0;&lt;br /&gt;
      if (abs(PDGEncoding) == 2212) { // Only apply this for protons&lt;br /&gt;
         for (Int_t n : *hit_array) { // loop x&lt;br /&gt;
            for (int binPosPow = 0; binPosPow &amp;lt; 10; binPosPow++) { // loop y&lt;br /&gt;
               binPos = pow(2, binPosPow);&lt;br /&gt;
               if (binPos &amp;amp; n) {&lt;br /&gt;
                  outX = x + (idx_x - x_mean) * pixel_size;&lt;br /&gt;
                  outY = y + (binPosPow - y_mean) * pixel_size;&lt;br /&gt;
                  treeSimulationOut-&amp;gt;Fill();&lt;br /&gt;
               }&lt;br /&gt;
            }&lt;br /&gt;
            idx_x++;&lt;br /&gt;
         }&lt;br /&gt;
      }&lt;br /&gt;
   }&lt;br /&gt;
&lt;br /&gt;
   treeSimulationOut-&amp;gt;Write();&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;/div&gt;</summary>
		<author><name>Hpe090</name></author>
	</entry>
	<entry>
		<id>https://pct.wiki.uib.no/index.php?title=Cluster_convolution_for_GATE&amp;diff=535</id>
		<title>Cluster convolution for GATE</title>
		<link rel="alternate" type="text/html" href="https://pct.wiki.uib.no/index.php?title=Cluster_convolution_for_GATE&amp;diff=535"/>
		<updated>2019-02-25T14:03:02Z</updated>

		<summary type="html">&lt;p&gt;Hpe090: Made page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;In her MSc project, Silje Grimstad made a filtered library of the clusters from the summer beamtest in Heidelberg.&lt;br /&gt;
The result is ~20k Helium clusters stored as a x/y array in a ROOT file:&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! x_mean&lt;br /&gt;
! y_mean&lt;br /&gt;
! size&lt;br /&gt;
! hit_array&lt;br /&gt;
! height&lt;br /&gt;
! width&lt;br /&gt;
! x_start&lt;br /&gt;
! y_start&lt;br /&gt;
! i_event&lt;br /&gt;
! combined&lt;br /&gt;
|-&lt;br /&gt;
| float&lt;br /&gt;
| float&lt;br /&gt;
| int&lt;br /&gt;
| list&amp;lt;int&amp;gt;&lt;br /&gt;
| int&lt;br /&gt;
| int&lt;br /&gt;
| int&lt;br /&gt;
| int&lt;br /&gt;
| int&lt;br /&gt;
| bool&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
A random sample of 9 clusters is shown below:&lt;br /&gt;
&lt;br /&gt;
[[File:9_clusters.png|600px]]&lt;br /&gt;
&lt;br /&gt;
We want to convolute a GATE simulation with clusters from this library. For each hit in the MC data, we pick a random cluster from the library and draw it around the hit position.&lt;br /&gt;
To do this, use the code at the bottom, with the following result:&lt;br /&gt;
&lt;br /&gt;
[[File:original_vs_convoluted_hitmap.PNG|1000px]]&lt;br /&gt;
&lt;br /&gt;
The needed cluster database for this is located at [https://github.com/HelgeEgil/focal/blob/master/DTCToolkit/Data/ClusterSizes/ALPIDE/database_combined_clusters_filter.root GitHib].&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;cpp&amp;quot;&amp;gt;&lt;br /&gt;
#include &amp;lt;TTree.h&amp;gt;&lt;br /&gt;
#include &amp;lt;TFile.h&amp;gt;&lt;br /&gt;
#include &amp;lt;TRandom.h&amp;gt;&lt;br /&gt;
#include &amp;lt;list&amp;gt;&lt;br /&gt;
#include &amp;lt;vector&amp;gt;&lt;br /&gt;
&lt;br /&gt;
using namespace std;&lt;br /&gt;
&lt;br /&gt;
void convert_root_file() {&lt;br /&gt;
   TFile         *fCluster = new TFile(&amp;quot;database_combined_clusters_filter.root&amp;quot;, &amp;quot;READ&amp;quot;);&lt;br /&gt;
   TFile         *fSimulationIn = new TFile(&amp;quot;simulationToBeClustered.root&amp;quot;, &amp;quot;READ&amp;quot;);&lt;br /&gt;
   TFile         *fSimulationOut = new TFile(&amp;quot;simulationToBeClustered_clustered.root&amp;quot;, &amp;quot;recreate&amp;quot;);&lt;br /&gt;
   TTree         *treeCluster = (TTree*) fCluster-&amp;gt;Get(&amp;quot;database&amp;quot;);&lt;br /&gt;
   TTree         *treeSimulationIn  = (TTree*) fSimulationIn-&amp;gt;Get(&amp;quot;Hits&amp;quot;);&lt;br /&gt;
   TTree         *treeSimulationOut = new TTree(&amp;quot;Hits&amp;quot;, &amp;quot;Clustered GATE tree&amp;quot;);&lt;br /&gt;
&lt;br /&gt;
   Double_t       x_mean, y_mean;&lt;br /&gt;
   Int_t          randomClusterIdx, binPos, idx_x;&lt;br /&gt;
   list&amp;lt;Int_t&amp;gt;   *hit_array = 0;&lt;br /&gt;
   TBranch       *b_hit_array;&lt;br /&gt;
   TRandom3      *gRand = new TRandom3(0);&lt;br /&gt;
   Float_t        pixel_size = 0.02929;&lt;br /&gt;
   &lt;br /&gt;
   Float_t        allZ = 0;&lt;br /&gt;
   Int_t          fillN = 0;&lt;br /&gt;
   Float_t        x,y,z,edep,outX, outY, outZ;&lt;br /&gt;
   Int_t          parentID, eventID, outEventID, outParentID, nClusters, timeInClockSpeed, PDGEncoding;&lt;br /&gt;
   Char_t         processName[17];&lt;br /&gt;
&lt;br /&gt;
   TCanvas       *c = new TCanvas();&lt;br /&gt;
   TH2C          *hOrig = new TH2C(&amp;quot;hOrig&amp;quot;, &amp;quot;Original hitmap&amp;quot;,1024,-15,15,512,-7.5,7.5);&lt;br /&gt;
   TH2C          *hNew  = new TH2C(&amp;quot;hNew&amp;quot;,  &amp;quot;New hitmap&amp;quot;,     1024,-15,15,512,-7.5,7.5);&lt;br /&gt;
   Int_t          palette[2] = {kWhite, kBlack};&lt;br /&gt;
   &lt;br /&gt;
   c-&amp;gt;Divide(2,1);&lt;br /&gt;
   gStyle-&amp;gt;SetPalette(2, palette);&lt;br /&gt;
&lt;br /&gt;
   treeSimulationIn-&amp;gt;SetBranchAddress(&amp;quot;posX&amp;quot;,&amp;amp;x);&lt;br /&gt;
   treeSimulationIn-&amp;gt;SetBranchAddress(&amp;quot;posY&amp;quot;,&amp;amp;y);&lt;br /&gt;
   treeSimulationIn-&amp;gt;SetBranchAddress(&amp;quot;posZ&amp;quot;,&amp;amp;z);&lt;br /&gt;
   treeSimulationIn-&amp;gt;SetBranchAddress(&amp;quot;edep&amp;quot;,&amp;amp;edep);&lt;br /&gt;
   treeSimulationIn-&amp;gt;SetBranchAddress(&amp;quot;eventID&amp;quot;,&amp;amp;eventID);&lt;br /&gt;
   treeSimulationIn-&amp;gt;SetBranchAddress(&amp;quot;parentID&amp;quot;,&amp;amp;parentID);&lt;br /&gt;
   treeSimulationIn-&amp;gt;SetBranchAddress(&amp;quot;PDGEncoding&amp;quot;, &amp;amp;PDGEncoding);&lt;br /&gt;
&lt;br /&gt;
   treeSimulationOut-&amp;gt;Branch(&amp;quot;posX&amp;quot;, &amp;amp;outX, &amp;quot;posX/F&amp;quot;);&lt;br /&gt;
   treeSimulationOut-&amp;gt;Branch(&amp;quot;posY&amp;quot;, &amp;amp;outY, &amp;quot;posY/F&amp;quot;);&lt;br /&gt;
   treeSimulationOut-&amp;gt;Branch(&amp;quot;posZ&amp;quot;, &amp;amp;outZ, &amp;quot;posZ/F&amp;quot;);&lt;br /&gt;
   treeSimulationOut-&amp;gt;Branch(&amp;quot;eventID&amp;quot;, &amp;amp;outEventID, &amp;quot;eventID/I&amp;quot;);&lt;br /&gt;
   treeSimulationOut-&amp;gt;Branch(&amp;quot;parentID&amp;quot;, &amp;amp;outParentID, &amp;quot;parentID/I&amp;quot;);&lt;br /&gt;
   treeSimulationOut-&amp;gt;Branch(&amp;quot;clockTime&amp;quot;, &amp;amp;timeInClockSpeed, &amp;quot;clockTime/I&amp;quot;);&lt;br /&gt;
&lt;br /&gt;
   treeCluster-&amp;gt;SetBranchAddress(&amp;quot;x_mean&amp;quot;, &amp;amp;x_mean);&lt;br /&gt;
   treeCluster-&amp;gt;SetBranchAddress(&amp;quot;y_mean&amp;quot;, &amp;amp;y_mean);&lt;br /&gt;
   treeCluster-&amp;gt;SetBranchAddress(&amp;quot;hit_array&amp;quot;, &amp;amp;hit_array, &amp;amp;b_hit_array);&lt;br /&gt;
&lt;br /&gt;
   nClusters = treeCluster-&amp;gt;GetEntriesFast();&lt;br /&gt;
   randomClusterIdx = gRand-&amp;gt;Integer(nClusters);&lt;br /&gt;
   treeCluster-&amp;gt;GetEntry(randomClusterIdx);&lt;br /&gt;
&lt;br /&gt;
   for (Int_t i=0, N = treeSimulationIn-&amp;gt;GetEntries(); i&amp;lt;N; ++i) {&lt;br /&gt;
      treeSimulationIn-&amp;gt;GetEntry(i);&lt;br /&gt;
      &lt;br /&gt;
      timeInClockSpeed = 400 * eventID;&lt;br /&gt;
      outParentID = parentID;&lt;br /&gt;
      outEventID = eventID;&lt;br /&gt;
      outZ = z;&lt;br /&gt;
&lt;br /&gt;
      if (z&amp;lt;2) hOrig-&amp;gt;Fill(x,y);&lt;br /&gt;
&lt;br /&gt;
      randomClusterIdx = gRand-&amp;gt;Integer(nClusters);&lt;br /&gt;
      treeCluster-&amp;gt;GetEntry(randomClusterIdx);&lt;br /&gt;
&lt;br /&gt;
      idx_x = 0;&lt;br /&gt;
      if (abs(PDGEncoding) == 2212) {&lt;br /&gt;
         for (Int_t n : *hit_array) { // loop x&lt;br /&gt;
            for (int binPosPow = 0; binPosPow &amp;lt; 10; binPosPow++) { // loop y&lt;br /&gt;
               binPos = pow(2, binPosPow);&lt;br /&gt;
               if (binPos &amp;amp; n) {&lt;br /&gt;
                  outX = x + (idx_x - x_mean) * pixel_size;&lt;br /&gt;
                  outY = y + (binPosPow - y_mean) * pixel_size;&lt;br /&gt;
                  treeSimulationOut-&amp;gt;Fill();&lt;br /&gt;
                  if (z&amp;lt;2) hNew-&amp;gt;Fill(outX, outY);&lt;br /&gt;
               }&lt;br /&gt;
            }&lt;br /&gt;
            idx_x++;&lt;br /&gt;
         }&lt;br /&gt;
      }&lt;br /&gt;
   }&lt;br /&gt;
&lt;br /&gt;
   treeSimulationOut-&amp;gt;Write();&lt;br /&gt;
&lt;br /&gt;
   c-&amp;gt;cd(1);&lt;br /&gt;
   hOrig-&amp;gt;Draw(&amp;quot;COL&amp;quot;);&lt;br /&gt;
   c-&amp;gt;cd(2);&lt;br /&gt;
   hNew-&amp;gt;Draw(&amp;quot;COL&amp;quot;);&lt;br /&gt;
&lt;br /&gt;
   /*&lt;br /&gt;
   delete fSimulationIn;&lt;br /&gt;
   delete fSimulationOut;&lt;br /&gt;
   delete fCluster;&lt;br /&gt;
   */&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;/div&gt;</summary>
		<author><name>Hpe090</name></author>
	</entry>
	<entry>
		<id>https://pct.wiki.uib.no/index.php?title=File:Original_vs_convoluted_hitmap.PNG&amp;diff=534</id>
		<title>File:Original vs convoluted hitmap.PNG</title>
		<link rel="alternate" type="text/html" href="https://pct.wiki.uib.no/index.php?title=File:Original_vs_convoluted_hitmap.PNG&amp;diff=534"/>
		<updated>2019-02-25T13:46:17Z</updated>

		<summary type="html">&lt;p&gt;Hpe090: File uploaded with MsUpload&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;File uploaded with MsUpload&lt;/div&gt;</summary>
		<author><name>Hpe090</name></author>
	</entry>
	<entry>
		<id>https://pct.wiki.uib.no/index.php?title=File:9_clusters.png&amp;diff=533</id>
		<title>File:9 clusters.png</title>
		<link rel="alternate" type="text/html" href="https://pct.wiki.uib.no/index.php?title=File:9_clusters.png&amp;diff=533"/>
		<updated>2019-02-25T13:44:20Z</updated>

		<summary type="html">&lt;p&gt;Hpe090: File uploaded with MsUpload&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;File uploaded with MsUpload&lt;/div&gt;</summary>
		<author><name>Hpe090</name></author>
	</entry>
	<entry>
		<id>https://pct.wiki.uib.no/index.php?title=Workpackages&amp;diff=532</id>
		<title>Workpackages</title>
		<link rel="alternate" type="text/html" href="https://pct.wiki.uib.no/index.php?title=Workpackages&amp;diff=532"/>
		<updated>2019-02-25T13:39:30Z</updated>

		<summary type="html">&lt;p&gt;Hpe090: /* WP1: Physics simulation, verification and design optimization */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;ASK link to people responsible for package / sub package? &lt;br /&gt;
&lt;br /&gt;
== [[WP1]]: Physics simulation, verification and design optimization ==&lt;br /&gt;
* Beam scenarios – beam spot, intensity&lt;br /&gt;
* Detector specifications:  [[DTC optimization|Optimization of geometry and segmentation]]&lt;br /&gt;
* Radiation environment - location&lt;br /&gt;
* Evaluation of rates (average/worst case) of the digital backend of the sensor&lt;br /&gt;
* Beam tests of sensors&lt;br /&gt;
* [[WP1 Ideas for project to pursue]]&lt;br /&gt;
* [[Cluster convolution for GATE]]&lt;br /&gt;
&lt;br /&gt;
== [[WP2]]: Chip submission and sensor characterization ==&lt;br /&gt;
* Improved sensor and data encoding design&lt;br /&gt;
* Chip submission&lt;br /&gt;
* Testing of prototypes &lt;br /&gt;
&lt;br /&gt;
== [[WP3]]: Data readout ==&lt;br /&gt;
* Optimisation of the readout electronics architecture&lt;br /&gt;
* SystemC simulation of rates (average/worst case) of the readout chain&lt;br /&gt;
* Development and testing of readout electronics&lt;br /&gt;
* Setting up a full readout chain&lt;br /&gt;
* Development of firmware and software&lt;br /&gt;
&lt;br /&gt;
== [[WP4]]: Online systems ==&lt;br /&gt;
* Hardware infrastructure&lt;br /&gt;
* Software infrastructure&lt;br /&gt;
* DAQ software&lt;br /&gt;
* DCS + Trigger&lt;br /&gt;
* Data quality monitoring&lt;br /&gt;
&lt;br /&gt;
== [[WP5]]: Assembly and System integration ==&lt;br /&gt;
* Assembly of chips into HICs/staves&lt;br /&gt;
* Assembly of staves into layers&lt;br /&gt;
* Integration of layers into a compact detector&lt;br /&gt;
* Mechanical and electrical integration, cooling&lt;br /&gt;
* Electronics and DAQ integration&lt;br /&gt;
&lt;br /&gt;
== [[WP6]]: Commissioning ==&lt;br /&gt;
* Commissioning of the PRM in beams&lt;br /&gt;
* Performance evaluation in a pre-clinical environment, i.e. with phantoms  &lt;br /&gt;
&lt;br /&gt;
== [[WP7]]: Reconstruction software ==&lt;br /&gt;
* Calorimeter response &lt;br /&gt;
* Calorimeter track reconstruction&lt;br /&gt;
* Reconstruction of 3D trajectory – track vector matching&lt;br /&gt;
* 3D stopping power map&lt;/div&gt;</summary>
		<author><name>Hpe090</name></author>
	</entry>
	<entry>
		<id>https://pct.wiki.uib.no/index.php?title=Main_Page&amp;diff=531</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://pct.wiki.uib.no/index.php?title=Main_Page&amp;diff=531"/>
		<updated>2019-01-02T08:29:52Z</updated>

		<summary type="html">&lt;p&gt;Hpe090: /* Workpackage Reports */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Wiki for the proton CT project&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== [[Documentation]] ==&lt;br /&gt;
[[Documentation]] on how to install and use the involved software packages, the development workflow, etc.&lt;br /&gt;
&lt;br /&gt;
== [[Publications]] ==&lt;br /&gt;
List of publications from the project.&lt;br /&gt;
&lt;br /&gt;
==== Workpackage Reports ====&lt;br /&gt;
* [[Media:pCT-WP1-1-Rev2 design recommendations.pdf | pCT-WP1-01-Rev2 Detector design specifications]] (Rev2: Added carrier board thickness recommendations) --- See also submitted article on design optimization&lt;br /&gt;
* [[:File:pCT-WP1-02-Rev3 (Radiation environment and electronics).pdf | pCT-WP1-02-Rev3 Radiation environment and placement of electronics]] (Rev2: Updated results and assumptions, Rev3: Updated with 1-10cm results) (Please feel free to contact [mailto:jars@hvl.no Jarle Rambo Sølie] if there are any questions regarding the contents of this document.&lt;br /&gt;
&lt;br /&gt;
==== Theses ====&lt;br /&gt;
* Daniel Aadnevik - MSc - 2014 - Extremely high-granularity digital tracking calorimeter for the detection of scattered protons in pCT&lt;br /&gt;
* [http://bora.uib.no/bitstream/handle/1956/10412/135279255.pdf?sequence=1&amp;amp;isAllowed=y Kristian Austreim - MSc - 2015 - Proton computed tomography readout testing and detector design]&lt;br /&gt;
* [http://bora.uib.no/bitstream/handle/1956/16041/thesis_final.pdf?sequence=1&amp;amp;isAllowed=y Ola Grøttvik - MSc - 2017 - Design of High-Speed Digital Readout System for Use in Proton Computed Tomography]&lt;br /&gt;
* [http://bora.uib.no/bitstream/handle/1956/16758/PCT_readout_testing_and_detector_HSchaug.pdf?sequence=1&amp;amp;isAllowed=y Håkon Schaug - MSc - 2017 - Proton Beam Test Of A High Granularity Calorimeter For Proton Computed Tomography]&lt;br /&gt;
* [https://brage.bibsys.no/xmlui/bitstream/handle/11250/2434108/16246_FULLTEXT.pdf?sequence=1&amp;amp;isAllowed=y Even Hansen - MSc - 2017 - Charge Diffusion Modelling for a Monolithic Active Pixel Sensor Detector with Application to Proton CT]&lt;br /&gt;
* [http://bora.uib.no/handle/1956/17757 Helge Pettersen - PhD - 2018 - A Digital Tracking Calorimeter for Proton Computed Tomography]&lt;br /&gt;
* [http://bora.uib.no/handle/1956/18748 Simon Kristian Huiberts - MSc - 2018 - Characterization of the ALPIDE chip using He ions (Data from Australian Micro beam, cluster size characteristics). ]&lt;br /&gt;
* [http://bora.uib.no/handle/1956/18058 Viljar Nilsen Ekeland - MSc - 2018 - Characterization of the ALPIDE chip using protons (Data from Oslo beam test, cluster size and LET correlation with different bias voltages).]&lt;br /&gt;
* [http://bora.uib.no/handle/1956/18057 Susmita Afroz - MSc - 2018 - Noise and Cluster Size Studies of ALPIDE-CMOS Pixel Sensor for pCT]&lt;br /&gt;
* Silje Grimstad - MSc (HVL) - 2019 - ALPIDE Cluster simulations (Building database of cluster characteristics, simulation of clusters using said database. Position and cluster separation algorithms).&lt;br /&gt;
* Alba Garcia Santos - MSc (Utrecht) - 2019 - Improvements of track reconstruction algorithms in pixel-based pCT calorimeters&lt;br /&gt;
* Aleksei Kuleshov - MSc - 2019 - Proton CT monitoring and ALPIDE control (MQTT protocol server, System workflow, GUI implementation).&lt;br /&gt;
&lt;br /&gt;
==== Journal Articles ====&lt;br /&gt;
* Pettersen, H.E.S., J. Alme, A. van den Brink, M. Chaar, D. Fehlker, I. Meric, O.H. Odland, et al. &amp;lt;b&amp;gt;Proton Tracking in a High-Granularity Digital Tracking Calorimeter for Proton CT Purposes&amp;lt;/b&amp;gt;.  &amp;lt;i&amp;gt;Nuclear Instruments and Methods in Physics Research A 860C, 51–61. doi:10.1016/j.nima.2017.02.007.&amp;lt;/i&amp;gt;&lt;br /&gt;
** Published manuscript: [[Media: 1-s2.0-S0168900217301882-main.pdf | PDF]]&lt;br /&gt;
** Elsevier link: [http://www.sciencedirect.com/science/article/pii/S0168900217301882 doi:10.1016/j.nima.2017.02.007]&lt;br /&gt;
** arXiv link: [https://arxiv.org/abs/1611.02031 arXiv:1611.02031]&lt;br /&gt;
&lt;br /&gt;
* Pettersen, H.E.S., Chaar, M., Meric, I., Odland, O.H., Sølie, J., Röhrich, D. &amp;lt;b&amp;gt;Accuracy of parameterized proton range models; a comparison&amp;lt;/b&amp;gt;. &amp;lt;i&amp;gt;Radiation Physics and Chemistry, 144 (C): 295-297 (2018). doi:10.1016/j.radphyschem.2017.08.02&amp;lt;/i&amp;gt;&lt;br /&gt;
** Published manuscript: [[Media: Comparison of different calculation methods of proton ranges.pdf | PDF]]&lt;br /&gt;
** Elsevier link: [http://www.sciencedirect.com/science/article/pii/S0969806X17303869?via%3Dihub 10.1016/j.radphyschem.2017.08.028]&lt;br /&gt;
** arXiv link: [https://arxiv.org/abs/1704.08854  arXiv:1704.08854]&lt;br /&gt;
&lt;br /&gt;
* Pettersen, H. E. S., and D. Röhrich. 2017. &amp;lt;b&amp;gt;Kreftbehandling Med Protonterapi Og Proton CT.&amp;lt;/b&amp;gt; &amp;lt;i&amp;gt;Fra Fysikkens Verden, December 2017.&amp;lt;/i&amp;gt;&lt;br /&gt;
** Published article: [[Media: FFV-proton-CT-ensidig.pdf | PDF]]&lt;br /&gt;
** [http://norskfysisk.no/filer/FFV/2017/FFV-2017-4.pdf Magazine at norskfysisk.no]&lt;br /&gt;
&lt;br /&gt;
==== In review ====&lt;br /&gt;
* Pettersen, H.E.S., Meric, I., Odland, O.H., Shafiee, H., Sølie, J., Röhrich, D. &amp;lt;b&amp;gt;Proton Tracking Algorithm for Pixel Based Range Telescopes for Proton Computed Tomography&amp;lt;/b&amp;gt;. &amp;lt;i&amp;gt;Revision submitted to Web of Conferences after the &amp;quot;Connecting the Dots&amp;quot; conference.&amp;lt;/i&amp;gt;&lt;br /&gt;
** Revised manuscript: [[Media: detector-proton-tracking.pdf | PDF]]&lt;br /&gt;
&lt;br /&gt;
* Pettersen, Helge Egil Seime, Lennart Volz, Jarle Sølie, Dieter Rohrich, and Joao Seco. &amp;lt;b&amp;gt;A Linear Projection Model to Estimate a Proton’s Position in a Pencil Beam For Single Sided Proton Imaging,&amp;lt;/b&amp;gt;. &amp;lt;i&amp;gt;Submitted to Physics in Medicine and Biology.&amp;lt;/i&amp;gt;&lt;br /&gt;
** Submitted manuscript: [[Media: Authors manuscript.pdf | PDF]]&lt;br /&gt;
&lt;br /&gt;
* Pettersen, Helge Egil Seime, Johan Alme, Gergely Gabor Barnafoldi, Alba Garcıa-Santos, Ola Grøttvik, Håvard Helstrup, Kristin Fanebust Hetland, Ilker Meric, Odd Harald Odland, Gabor Papp, Thomas Peitzmann, Dieter Röhrich, Joao Seco, Hesam Shafiee, Eivind Vågslid Skjæveland, Ganesh Tambave, Kjetil Ullaland, Monika Varga-Kofarago, Lennart Volz, Boris Wagner and Shiming Yang. &amp;lt;b&amp;gt;Design Optimization of a Pixel Based Range Telescope for Proton Computed Tomography.&amp;lt;/b&amp;gt; &amp;lt;i&amp;gt;Submitted to Physica Medica Special Issue: Advances in Geant4 for medicine.&amp;lt;/i&amp;gt;&lt;br /&gt;
** Submitted manuscript: [[Media: Pettersen et al. - Design Optimization of a Pixel Based Range Telesco.pdf| PDF]]&lt;br /&gt;
&lt;br /&gt;
==== Work in Progress ====&lt;br /&gt;
* J. Sølie, H. E. S. Pettersen, I. Meric, O. H. Odland, H. Helstrup and D. Röhrich: &amp;lt;b&amp;gt;A comparison of longitudinal and lateral range for protons traversing complex media using GATE, MCNP6 and FLUKA Monte Carlo simulations&amp;lt;/b&amp;gt;. &amp;lt;i&amp;gt;Rejected by Radiat. Phys. Chem. in conjunction with the [http://conferences.illinois.edu/irrma2017/ IRRMA X] conference.&amp;lt;/i&amp;gt;&lt;br /&gt;
** Preliminary manuscript: [[Media: 1708.00668.pdf |PDF]]&lt;br /&gt;
** arXiv link: [https://arxiv.org/abs/1708.00668  arXiv:1708.00668]&lt;br /&gt;
&lt;br /&gt;
== [[Meetings]] ==&lt;br /&gt;
Notes and slides from the project meetings&lt;br /&gt;
&lt;br /&gt;
== [[Workshops]] ==&lt;br /&gt;
Slides from the project [[Workshops | workshops]]&lt;br /&gt;
&lt;br /&gt;
== [[Workpackages]] ==&lt;br /&gt;
Sections for the different work packages&lt;br /&gt;
&lt;br /&gt;
== [[People]] ==&lt;br /&gt;
Contact info of involved people &lt;br /&gt;
&lt;br /&gt;
== [[Links]] ==&lt;br /&gt;
Link collection of topics regarding the project&lt;br /&gt;
&lt;br /&gt;
== Getting started ==&lt;br /&gt;
* Note: ASK is a placeholder that marks questions &lt;br /&gt;
* Note: Search function is not ideal. It doesn&#039;t find all occurences of the search term, e.g. aries finds libraries but not aries.bccs&lt;br /&gt;
&lt;br /&gt;
* Consult the [//meta.wikimedia.org/wiki/Help:Contents User&#039;s Guide] for information on using the wiki software.&lt;br /&gt;
* [//www.mediawiki.org/wiki/Manual:Configuration_settings Configuration settings list]&lt;br /&gt;
* [//www.mediawiki.org/wiki/Manual:FAQ MediaWiki FAQ]&lt;br /&gt;
* [https://lists.wikimedia.org/mailman/listinfo/mediawiki-announce MediaWiki release mailing list]&lt;/div&gt;</summary>
		<author><name>Hpe090</name></author>
	</entry>
	<entry>
		<id>https://pct.wiki.uib.no/index.php?title=Main_Page&amp;diff=530</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://pct.wiki.uib.no/index.php?title=Main_Page&amp;diff=530"/>
		<updated>2019-01-02T08:28:53Z</updated>

		<summary type="html">&lt;p&gt;Hpe090: /* Under construction */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Wiki for the proton CT project&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== [[Documentation]] ==&lt;br /&gt;
[[Documentation]] on how to install and use the involved software packages, the development workflow, etc.&lt;br /&gt;
&lt;br /&gt;
== [[Publications]] ==&lt;br /&gt;
List of publications from the project.&lt;br /&gt;
&lt;br /&gt;
==== Workpackage Reports ====&lt;br /&gt;
* [[Media:pCT-WP1-1-Rev2 design recommendations.pdf | pCT-WP1-01-Rev2 Detector design specifications]] (Rev2: Added carrier board thickness recommendations)&lt;br /&gt;
* [[:File:pCT-WP1-02-Rev3 (Radiation environment and electronics).pdf | pCT-WP1-02-Rev3 Radiation environment and placement of electronics]] (Rev2: Updated results and assumptions, Rev3: Updated with 1-10cm results) (Please feel free to contact [mailto:jars@hvl.no Jarle Rambo Sølie] if there are any questions regarding the contents of this document.&lt;br /&gt;
&lt;br /&gt;
==== Theses ====&lt;br /&gt;
* Daniel Aadnevik - MSc - 2014 - Extremely high-granularity digital tracking calorimeter for the detection of scattered protons in pCT&lt;br /&gt;
* [http://bora.uib.no/bitstream/handle/1956/10412/135279255.pdf?sequence=1&amp;amp;isAllowed=y Kristian Austreim - MSc - 2015 - Proton computed tomography readout testing and detector design]&lt;br /&gt;
* [http://bora.uib.no/bitstream/handle/1956/16041/thesis_final.pdf?sequence=1&amp;amp;isAllowed=y Ola Grøttvik - MSc - 2017 - Design of High-Speed Digital Readout System for Use in Proton Computed Tomography]&lt;br /&gt;
* [http://bora.uib.no/bitstream/handle/1956/16758/PCT_readout_testing_and_detector_HSchaug.pdf?sequence=1&amp;amp;isAllowed=y Håkon Schaug - MSc - 2017 - Proton Beam Test Of A High Granularity Calorimeter For Proton Computed Tomography]&lt;br /&gt;
* [https://brage.bibsys.no/xmlui/bitstream/handle/11250/2434108/16246_FULLTEXT.pdf?sequence=1&amp;amp;isAllowed=y Even Hansen - MSc - 2017 - Charge Diffusion Modelling for a Monolithic Active Pixel Sensor Detector with Application to Proton CT]&lt;br /&gt;
* [http://bora.uib.no/handle/1956/17757 Helge Pettersen - PhD - 2018 - A Digital Tracking Calorimeter for Proton Computed Tomography]&lt;br /&gt;
* [http://bora.uib.no/handle/1956/18748 Simon Kristian Huiberts - MSc - 2018 - Characterization of the ALPIDE chip using He ions (Data from Australian Micro beam, cluster size characteristics). ]&lt;br /&gt;
* [http://bora.uib.no/handle/1956/18058 Viljar Nilsen Ekeland - MSc - 2018 - Characterization of the ALPIDE chip using protons (Data from Oslo beam test, cluster size and LET correlation with different bias voltages).]&lt;br /&gt;
* [http://bora.uib.no/handle/1956/18057 Susmita Afroz - MSc - 2018 - Noise and Cluster Size Studies of ALPIDE-CMOS Pixel Sensor for pCT]&lt;br /&gt;
* Silje Grimstad - MSc (HVL) - 2019 - ALPIDE Cluster simulations (Building database of cluster characteristics, simulation of clusters using said database. Position and cluster separation algorithms).&lt;br /&gt;
* Alba Garcia Santos - MSc (Utrecht) - 2019 - Improvements of track reconstruction algorithms in pixel-based pCT calorimeters&lt;br /&gt;
* Aleksei Kuleshov - MSc - 2019 - Proton CT monitoring and ALPIDE control (MQTT protocol server, System workflow, GUI implementation).&lt;br /&gt;
&lt;br /&gt;
==== Journal Articles ====&lt;br /&gt;
* Pettersen, H.E.S., J. Alme, A. van den Brink, M. Chaar, D. Fehlker, I. Meric, O.H. Odland, et al. &amp;lt;b&amp;gt;Proton Tracking in a High-Granularity Digital Tracking Calorimeter for Proton CT Purposes&amp;lt;/b&amp;gt;.  &amp;lt;i&amp;gt;Nuclear Instruments and Methods in Physics Research A 860C, 51–61. doi:10.1016/j.nima.2017.02.007.&amp;lt;/i&amp;gt;&lt;br /&gt;
** Published manuscript: [[Media: 1-s2.0-S0168900217301882-main.pdf | PDF]]&lt;br /&gt;
** Elsevier link: [http://www.sciencedirect.com/science/article/pii/S0168900217301882 doi:10.1016/j.nima.2017.02.007]&lt;br /&gt;
** arXiv link: [https://arxiv.org/abs/1611.02031 arXiv:1611.02031]&lt;br /&gt;
&lt;br /&gt;
* Pettersen, H.E.S., Chaar, M., Meric, I., Odland, O.H., Sølie, J., Röhrich, D. &amp;lt;b&amp;gt;Accuracy of parameterized proton range models; a comparison&amp;lt;/b&amp;gt;. &amp;lt;i&amp;gt;Radiation Physics and Chemistry, 144 (C): 295-297 (2018). doi:10.1016/j.radphyschem.2017.08.02&amp;lt;/i&amp;gt;&lt;br /&gt;
** Published manuscript: [[Media: Comparison of different calculation methods of proton ranges.pdf | PDF]]&lt;br /&gt;
** Elsevier link: [http://www.sciencedirect.com/science/article/pii/S0969806X17303869?via%3Dihub 10.1016/j.radphyschem.2017.08.028]&lt;br /&gt;
** arXiv link: [https://arxiv.org/abs/1704.08854  arXiv:1704.08854]&lt;br /&gt;
&lt;br /&gt;
* Pettersen, H. E. S., and D. Röhrich. 2017. &amp;lt;b&amp;gt;Kreftbehandling Med Protonterapi Og Proton CT.&amp;lt;/b&amp;gt; &amp;lt;i&amp;gt;Fra Fysikkens Verden, December 2017.&amp;lt;/i&amp;gt;&lt;br /&gt;
** Published article: [[Media: FFV-proton-CT-ensidig.pdf | PDF]]&lt;br /&gt;
** [http://norskfysisk.no/filer/FFV/2017/FFV-2017-4.pdf Magazine at norskfysisk.no]&lt;br /&gt;
&lt;br /&gt;
==== In review ====&lt;br /&gt;
* Pettersen, H.E.S., Meric, I., Odland, O.H., Shafiee, H., Sølie, J., Röhrich, D. &amp;lt;b&amp;gt;Proton Tracking Algorithm for Pixel Based Range Telescopes for Proton Computed Tomography&amp;lt;/b&amp;gt;. &amp;lt;i&amp;gt;Revision submitted to Web of Conferences after the &amp;quot;Connecting the Dots&amp;quot; conference.&amp;lt;/i&amp;gt;&lt;br /&gt;
** Revised manuscript: [[Media: detector-proton-tracking.pdf | PDF]]&lt;br /&gt;
&lt;br /&gt;
* Pettersen, Helge Egil Seime, Lennart Volz, Jarle Sølie, Dieter Rohrich, and Joao Seco. &amp;lt;b&amp;gt;A Linear Projection Model to Estimate a Proton’s Position in a Pencil Beam For Single Sided Proton Imaging,&amp;lt;/b&amp;gt;. &amp;lt;i&amp;gt;Submitted to Physics in Medicine and Biology.&amp;lt;/i&amp;gt;&lt;br /&gt;
** Submitted manuscript: [[Media: Authors manuscript.pdf | PDF]]&lt;br /&gt;
&lt;br /&gt;
* Pettersen, Helge Egil Seime, Johan Alme, Gergely Gabor Barnafoldi, Alba Garcıa-Santos, Ola Grøttvik, Håvard Helstrup, Kristin Fanebust Hetland, Ilker Meric, Odd Harald Odland, Gabor Papp, Thomas Peitzmann, Dieter Röhrich, Joao Seco, Hesam Shafiee, Eivind Vågslid Skjæveland, Ganesh Tambave, Kjetil Ullaland, Monika Varga-Kofarago, Lennart Volz, Boris Wagner and Shiming Yang. &amp;lt;b&amp;gt;Design Optimization of a Pixel Based Range Telescope for Proton Computed Tomography.&amp;lt;/b&amp;gt; &amp;lt;i&amp;gt;Submitted to Physica Medica Special Issue: Advances in Geant4 for medicine.&amp;lt;/i&amp;gt;&lt;br /&gt;
** Submitted manuscript: [[Media: Pettersen et al. - Design Optimization of a Pixel Based Range Telesco.pdf| PDF]]&lt;br /&gt;
&lt;br /&gt;
==== Work in Progress ====&lt;br /&gt;
* J. Sølie, H. E. S. Pettersen, I. Meric, O. H. Odland, H. Helstrup and D. Röhrich: &amp;lt;b&amp;gt;A comparison of longitudinal and lateral range for protons traversing complex media using GATE, MCNP6 and FLUKA Monte Carlo simulations&amp;lt;/b&amp;gt;. &amp;lt;i&amp;gt;Rejected by Radiat. Phys. Chem. in conjunction with the [http://conferences.illinois.edu/irrma2017/ IRRMA X] conference.&amp;lt;/i&amp;gt;&lt;br /&gt;
** Preliminary manuscript: [[Media: 1708.00668.pdf |PDF]]&lt;br /&gt;
** arXiv link: [https://arxiv.org/abs/1708.00668  arXiv:1708.00668]&lt;br /&gt;
&lt;br /&gt;
== [[Meetings]] ==&lt;br /&gt;
Notes and slides from the project meetings&lt;br /&gt;
&lt;br /&gt;
== [[Workshops]] ==&lt;br /&gt;
Slides from the project [[Workshops | workshops]]&lt;br /&gt;
&lt;br /&gt;
== [[Workpackages]] ==&lt;br /&gt;
Sections for the different work packages&lt;br /&gt;
&lt;br /&gt;
== [[People]] ==&lt;br /&gt;
Contact info of involved people &lt;br /&gt;
&lt;br /&gt;
== [[Links]] ==&lt;br /&gt;
Link collection of topics regarding the project&lt;br /&gt;
&lt;br /&gt;
== Getting started ==&lt;br /&gt;
* Note: ASK is a placeholder that marks questions &lt;br /&gt;
* Note: Search function is not ideal. It doesn&#039;t find all occurences of the search term, e.g. aries finds libraries but not aries.bccs&lt;br /&gt;
&lt;br /&gt;
* Consult the [//meta.wikimedia.org/wiki/Help:Contents User&#039;s Guide] for information on using the wiki software.&lt;br /&gt;
* [//www.mediawiki.org/wiki/Manual:Configuration_settings Configuration settings list]&lt;br /&gt;
* [//www.mediawiki.org/wiki/Manual:FAQ MediaWiki FAQ]&lt;br /&gt;
* [https://lists.wikimedia.org/mailman/listinfo/mediawiki-announce MediaWiki release mailing list]&lt;/div&gt;</summary>
		<author><name>Hpe090</name></author>
	</entry>
	<entry>
		<id>https://pct.wiki.uib.no/index.php?title=Main_Page&amp;diff=529</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://pct.wiki.uib.no/index.php?title=Main_Page&amp;diff=529"/>
		<updated>2019-01-02T08:28:16Z</updated>

		<summary type="html">&lt;p&gt;Hpe090: /* In review */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Wiki for the proton CT project&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== [[Documentation]] ==&lt;br /&gt;
[[Documentation]] on how to install and use the involved software packages, the development workflow, etc.&lt;br /&gt;
&lt;br /&gt;
== [[Publications]] ==&lt;br /&gt;
List of publications from the project.&lt;br /&gt;
&lt;br /&gt;
==== Workpackage Reports ====&lt;br /&gt;
* [[Media:pCT-WP1-1-Rev2 design recommendations.pdf | pCT-WP1-01-Rev2 Detector design specifications]] (Rev2: Added carrier board thickness recommendations)&lt;br /&gt;
* [[:File:pCT-WP1-02-Rev3 (Radiation environment and electronics).pdf | pCT-WP1-02-Rev3 Radiation environment and placement of electronics]] (Rev2: Updated results and assumptions, Rev3: Updated with 1-10cm results) (Please feel free to contact [mailto:jars@hvl.no Jarle Rambo Sølie] if there are any questions regarding the contents of this document.&lt;br /&gt;
&lt;br /&gt;
==== Theses ====&lt;br /&gt;
* Daniel Aadnevik - MSc - 2014 - Extremely high-granularity digital tracking calorimeter for the detection of scattered protons in pCT&lt;br /&gt;
* [http://bora.uib.no/bitstream/handle/1956/10412/135279255.pdf?sequence=1&amp;amp;isAllowed=y Kristian Austreim - MSc - 2015 - Proton computed tomography readout testing and detector design]&lt;br /&gt;
* [http://bora.uib.no/bitstream/handle/1956/16041/thesis_final.pdf?sequence=1&amp;amp;isAllowed=y Ola Grøttvik - MSc - 2017 - Design of High-Speed Digital Readout System for Use in Proton Computed Tomography]&lt;br /&gt;
* [http://bora.uib.no/bitstream/handle/1956/16758/PCT_readout_testing_and_detector_HSchaug.pdf?sequence=1&amp;amp;isAllowed=y Håkon Schaug - MSc - 2017 - Proton Beam Test Of A High Granularity Calorimeter For Proton Computed Tomography]&lt;br /&gt;
* [https://brage.bibsys.no/xmlui/bitstream/handle/11250/2434108/16246_FULLTEXT.pdf?sequence=1&amp;amp;isAllowed=y Even Hansen - MSc - 2017 - Charge Diffusion Modelling for a Monolithic Active Pixel Sensor Detector with Application to Proton CT]&lt;br /&gt;
* [http://bora.uib.no/handle/1956/17757 Helge Pettersen - PhD - 2018 - A Digital Tracking Calorimeter for Proton Computed Tomography]&lt;br /&gt;
* [http://bora.uib.no/handle/1956/18748 Simon Kristian Huiberts - MSc - 2018 - Characterization of the ALPIDE chip using He ions (Data from Australian Micro beam, cluster size characteristics). ]&lt;br /&gt;
* [http://bora.uib.no/handle/1956/18058 Viljar Nilsen Ekeland - MSc - 2018 - Characterization of the ALPIDE chip using protons (Data from Oslo beam test, cluster size and LET correlation with different bias voltages).]&lt;br /&gt;
* [http://bora.uib.no/handle/1956/18057 Susmita Afroz - MSc - 2018 - Noise and Cluster Size Studies of ALPIDE-CMOS Pixel Sensor for pCT]&lt;br /&gt;
* Silje Grimstad - MSc (HVL) - 2019 - ALPIDE Cluster simulations (Building database of cluster characteristics, simulation of clusters using said database. Position and cluster separation algorithms).&lt;br /&gt;
* Alba Garcia Santos - MSc (Utrecht) - 2019 - Improvements of track reconstruction algorithms in pixel-based pCT calorimeters&lt;br /&gt;
* Aleksei Kuleshov - MSc - 2019 - Proton CT monitoring and ALPIDE control (MQTT protocol server, System workflow, GUI implementation).&lt;br /&gt;
&lt;br /&gt;
==== Journal Articles ====&lt;br /&gt;
* Pettersen, H.E.S., J. Alme, A. van den Brink, M. Chaar, D. Fehlker, I. Meric, O.H. Odland, et al. &amp;lt;b&amp;gt;Proton Tracking in a High-Granularity Digital Tracking Calorimeter for Proton CT Purposes&amp;lt;/b&amp;gt;.  &amp;lt;i&amp;gt;Nuclear Instruments and Methods in Physics Research A 860C, 51–61. doi:10.1016/j.nima.2017.02.007.&amp;lt;/i&amp;gt;&lt;br /&gt;
** Published manuscript: [[Media: 1-s2.0-S0168900217301882-main.pdf | PDF]]&lt;br /&gt;
** Elsevier link: [http://www.sciencedirect.com/science/article/pii/S0168900217301882 doi:10.1016/j.nima.2017.02.007]&lt;br /&gt;
** arXiv link: [https://arxiv.org/abs/1611.02031 arXiv:1611.02031]&lt;br /&gt;
&lt;br /&gt;
* Pettersen, H.E.S., Chaar, M., Meric, I., Odland, O.H., Sølie, J., Röhrich, D. &amp;lt;b&amp;gt;Accuracy of parameterized proton range models; a comparison&amp;lt;/b&amp;gt;. &amp;lt;i&amp;gt;Radiation Physics and Chemistry, 144 (C): 295-297 (2018). doi:10.1016/j.radphyschem.2017.08.02&amp;lt;/i&amp;gt;&lt;br /&gt;
** Published manuscript: [[Media: Comparison of different calculation methods of proton ranges.pdf | PDF]]&lt;br /&gt;
** Elsevier link: [http://www.sciencedirect.com/science/article/pii/S0969806X17303869?via%3Dihub 10.1016/j.radphyschem.2017.08.028]&lt;br /&gt;
** arXiv link: [https://arxiv.org/abs/1704.08854  arXiv:1704.08854]&lt;br /&gt;
&lt;br /&gt;
* Pettersen, H. E. S., and D. Röhrich. 2017. &amp;lt;b&amp;gt;Kreftbehandling Med Protonterapi Og Proton CT.&amp;lt;/b&amp;gt; &amp;lt;i&amp;gt;Fra Fysikkens Verden, December 2017.&amp;lt;/i&amp;gt;&lt;br /&gt;
** Published article: [[Media: FFV-proton-CT-ensidig.pdf | PDF]]&lt;br /&gt;
** [http://norskfysisk.no/filer/FFV/2017/FFV-2017-4.pdf Magazine at norskfysisk.no]&lt;br /&gt;
&lt;br /&gt;
==== In review ====&lt;br /&gt;
* Pettersen, H.E.S., Meric, I., Odland, O.H., Shafiee, H., Sølie, J., Röhrich, D. &amp;lt;b&amp;gt;Proton Tracking Algorithm for Pixel Based Range Telescopes for Proton Computed Tomography&amp;lt;/b&amp;gt;. &amp;lt;i&amp;gt;Revision submitted to Web of Conferences after the &amp;quot;Connecting the Dots&amp;quot; conference.&amp;lt;/i&amp;gt;&lt;br /&gt;
** Revised manuscript: [[Media: detector-proton-tracking.pdf | PDF]]&lt;br /&gt;
&lt;br /&gt;
* Pettersen, Helge Egil Seime, Lennart Volz, Jarle Sølie, Dieter Rohrich, and Joao Seco. &amp;lt;b&amp;gt;A Linear Projection Model to Estimate a Proton’s Position in a Pencil Beam For Single Sided Proton Imaging,&amp;lt;/b&amp;gt;. &amp;lt;i&amp;gt;Submitted to Physics in Medicine and Biology.&amp;lt;/i&amp;gt;&lt;br /&gt;
** Submitted manuscript: [[Media: Authors manuscript.pdf | PDF]]&lt;br /&gt;
&lt;br /&gt;
* Pettersen, Helge Egil Seime, Johan Alme, Gergely Gabor Barnafoldi, Alba Garcıa-Santos, Ola Grøttvik, Håvard Helstrup, Kristin Fanebust Hetland, Ilker Meric, Odd Harald Odland, Gabor Papp, Thomas Peitzmann, Dieter Röhrich, Joao Seco, Hesam Shafiee, Eivind Vågslid Skjæveland, Ganesh Tambave, Kjetil Ullaland, Monika Varga-Kofarago, Lennart Volz, Boris Wagner and Shiming Yang. &amp;lt;b&amp;gt;Design Optimization of a Pixel Based Range Telescope for Proton Computed Tomography.&amp;lt;/b&amp;gt; &amp;lt;i&amp;gt;Submitted to Physica Medica Special Issue: Advances in Geant4 for medicine.&amp;lt;/i&amp;gt;&lt;br /&gt;
** Submitted manuscript: [[Media: Pettersen et al. - Design Optimization of a Pixel Based Range Telesco.pdf| PDF]]&lt;br /&gt;
&lt;br /&gt;
==== Under construction ====&lt;br /&gt;
* J. Sølie, H. E. S. Pettersen, I. Meric, O. H. Odland, H. Helstrup and D. Röhrich: &amp;lt;b&amp;gt;A comparison of longitudinal and lateral range for protons traversing complex media using GATE, MCNP6 and FLUKA Monte Carlo simulations&amp;lt;/b&amp;gt;. &amp;lt;i&amp;gt;Rejected by Radiat. Phys. Chem. in conjunction with the [http://conferences.illinois.edu/irrma2017/ IRRMA X] conference.&amp;lt;/i&amp;gt;&lt;br /&gt;
** Preliminary manuscript: [[Media: 1708.00668.pdf |PDF]]&lt;br /&gt;
** arXiv link: [https://arxiv.org/abs/1708.00668  arXiv:1708.00668]&lt;br /&gt;
&lt;br /&gt;
== [[Meetings]] ==&lt;br /&gt;
Notes and slides from the project meetings&lt;br /&gt;
&lt;br /&gt;
== [[Workshops]] ==&lt;br /&gt;
Slides from the project [[Workshops | workshops]]&lt;br /&gt;
&lt;br /&gt;
== [[Workpackages]] ==&lt;br /&gt;
Sections for the different work packages&lt;br /&gt;
&lt;br /&gt;
== [[People]] ==&lt;br /&gt;
Contact info of involved people &lt;br /&gt;
&lt;br /&gt;
== [[Links]] ==&lt;br /&gt;
Link collection of topics regarding the project&lt;br /&gt;
&lt;br /&gt;
== Getting started ==&lt;br /&gt;
* Note: ASK is a placeholder that marks questions &lt;br /&gt;
* Note: Search function is not ideal. It doesn&#039;t find all occurences of the search term, e.g. aries finds libraries but not aries.bccs&lt;br /&gt;
&lt;br /&gt;
* Consult the [//meta.wikimedia.org/wiki/Help:Contents User&#039;s Guide] for information on using the wiki software.&lt;br /&gt;
* [//www.mediawiki.org/wiki/Manual:Configuration_settings Configuration settings list]&lt;br /&gt;
* [//www.mediawiki.org/wiki/Manual:FAQ MediaWiki FAQ]&lt;br /&gt;
* [https://lists.wikimedia.org/mailman/listinfo/mediawiki-announce MediaWiki release mailing list]&lt;/div&gt;</summary>
		<author><name>Hpe090</name></author>
	</entry>
	<entry>
		<id>https://pct.wiki.uib.no/index.php?title=Main_Page&amp;diff=528</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://pct.wiki.uib.no/index.php?title=Main_Page&amp;diff=528"/>
		<updated>2019-01-02T08:28:10Z</updated>

		<summary type="html">&lt;p&gt;Hpe090: /* Journal Articles */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Wiki for the proton CT project&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== [[Documentation]] ==&lt;br /&gt;
[[Documentation]] on how to install and use the involved software packages, the development workflow, etc.&lt;br /&gt;
&lt;br /&gt;
== [[Publications]] ==&lt;br /&gt;
List of publications from the project.&lt;br /&gt;
&lt;br /&gt;
==== Workpackage Reports ====&lt;br /&gt;
* [[Media:pCT-WP1-1-Rev2 design recommendations.pdf | pCT-WP1-01-Rev2 Detector design specifications]] (Rev2: Added carrier board thickness recommendations)&lt;br /&gt;
* [[:File:pCT-WP1-02-Rev3 (Radiation environment and electronics).pdf | pCT-WP1-02-Rev3 Radiation environment and placement of electronics]] (Rev2: Updated results and assumptions, Rev3: Updated with 1-10cm results) (Please feel free to contact [mailto:jars@hvl.no Jarle Rambo Sølie] if there are any questions regarding the contents of this document.&lt;br /&gt;
&lt;br /&gt;
==== Theses ====&lt;br /&gt;
* Daniel Aadnevik - MSc - 2014 - Extremely high-granularity digital tracking calorimeter for the detection of scattered protons in pCT&lt;br /&gt;
* [http://bora.uib.no/bitstream/handle/1956/10412/135279255.pdf?sequence=1&amp;amp;isAllowed=y Kristian Austreim - MSc - 2015 - Proton computed tomography readout testing and detector design]&lt;br /&gt;
* [http://bora.uib.no/bitstream/handle/1956/16041/thesis_final.pdf?sequence=1&amp;amp;isAllowed=y Ola Grøttvik - MSc - 2017 - Design of High-Speed Digital Readout System for Use in Proton Computed Tomography]&lt;br /&gt;
* [http://bora.uib.no/bitstream/handle/1956/16758/PCT_readout_testing_and_detector_HSchaug.pdf?sequence=1&amp;amp;isAllowed=y Håkon Schaug - MSc - 2017 - Proton Beam Test Of A High Granularity Calorimeter For Proton Computed Tomography]&lt;br /&gt;
* [https://brage.bibsys.no/xmlui/bitstream/handle/11250/2434108/16246_FULLTEXT.pdf?sequence=1&amp;amp;isAllowed=y Even Hansen - MSc - 2017 - Charge Diffusion Modelling for a Monolithic Active Pixel Sensor Detector with Application to Proton CT]&lt;br /&gt;
* [http://bora.uib.no/handle/1956/17757 Helge Pettersen - PhD - 2018 - A Digital Tracking Calorimeter for Proton Computed Tomography]&lt;br /&gt;
* [http://bora.uib.no/handle/1956/18748 Simon Kristian Huiberts - MSc - 2018 - Characterization of the ALPIDE chip using He ions (Data from Australian Micro beam, cluster size characteristics). ]&lt;br /&gt;
* [http://bora.uib.no/handle/1956/18058 Viljar Nilsen Ekeland - MSc - 2018 - Characterization of the ALPIDE chip using protons (Data from Oslo beam test, cluster size and LET correlation with different bias voltages).]&lt;br /&gt;
* [http://bora.uib.no/handle/1956/18057 Susmita Afroz - MSc - 2018 - Noise and Cluster Size Studies of ALPIDE-CMOS Pixel Sensor for pCT]&lt;br /&gt;
* Silje Grimstad - MSc (HVL) - 2019 - ALPIDE Cluster simulations (Building database of cluster characteristics, simulation of clusters using said database. Position and cluster separation algorithms).&lt;br /&gt;
* Alba Garcia Santos - MSc (Utrecht) - 2019 - Improvements of track reconstruction algorithms in pixel-based pCT calorimeters&lt;br /&gt;
* Aleksei Kuleshov - MSc - 2019 - Proton CT monitoring and ALPIDE control (MQTT protocol server, System workflow, GUI implementation).&lt;br /&gt;
&lt;br /&gt;
==== Journal Articles ====&lt;br /&gt;
* Pettersen, H.E.S., J. Alme, A. van den Brink, M. Chaar, D. Fehlker, I. Meric, O.H. Odland, et al. &amp;lt;b&amp;gt;Proton Tracking in a High-Granularity Digital Tracking Calorimeter for Proton CT Purposes&amp;lt;/b&amp;gt;.  &amp;lt;i&amp;gt;Nuclear Instruments and Methods in Physics Research A 860C, 51–61. doi:10.1016/j.nima.2017.02.007.&amp;lt;/i&amp;gt;&lt;br /&gt;
** Published manuscript: [[Media: 1-s2.0-S0168900217301882-main.pdf | PDF]]&lt;br /&gt;
** Elsevier link: [http://www.sciencedirect.com/science/article/pii/S0168900217301882 doi:10.1016/j.nima.2017.02.007]&lt;br /&gt;
** arXiv link: [https://arxiv.org/abs/1611.02031 arXiv:1611.02031]&lt;br /&gt;
&lt;br /&gt;
* Pettersen, H.E.S., Chaar, M., Meric, I., Odland, O.H., Sølie, J., Röhrich, D. &amp;lt;b&amp;gt;Accuracy of parameterized proton range models; a comparison&amp;lt;/b&amp;gt;. &amp;lt;i&amp;gt;Radiation Physics and Chemistry, 144 (C): 295-297 (2018). doi:10.1016/j.radphyschem.2017.08.02&amp;lt;/i&amp;gt;&lt;br /&gt;
** Published manuscript: [[Media: Comparison of different calculation methods of proton ranges.pdf | PDF]]&lt;br /&gt;
** Elsevier link: [http://www.sciencedirect.com/science/article/pii/S0969806X17303869?via%3Dihub 10.1016/j.radphyschem.2017.08.028]&lt;br /&gt;
** arXiv link: [https://arxiv.org/abs/1704.08854  arXiv:1704.08854]&lt;br /&gt;
&lt;br /&gt;
* Pettersen, H. E. S., and D. Röhrich. 2017. &amp;lt;b&amp;gt;Kreftbehandling Med Protonterapi Og Proton CT.&amp;lt;/b&amp;gt; &amp;lt;i&amp;gt;Fra Fysikkens Verden, December 2017.&amp;lt;/i&amp;gt;&lt;br /&gt;
** Published article: [[Media: FFV-proton-CT-ensidig.pdf | PDF]]&lt;br /&gt;
** [http://norskfysisk.no/filer/FFV/2017/FFV-2017-4.pdf Magazine at norskfysisk.no]&lt;br /&gt;
&lt;br /&gt;
==== In review ====&lt;br /&gt;
* Pettersen, H.E.S., Meric, I., Odland, O.H., Shafiee, H., Sølie, J., Röhrich, D. &amp;lt;b&amp;gt;Proton Tracking Algorithm for Pixel Based Range Telescopes for Proton Computed Tomography&amp;lt;/b&amp;gt;. &amp;lt;i&amp;gt;Revision submitted to Web of Conferences after the &amp;quot;Connecting the Dots&amp;quot; conference.&amp;lt;/i&amp;gt;&lt;br /&gt;
** Revised manuscript: [[Media: detector-proton-tracking.pdf | PDF]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Pettersen, Helge Egil Seime, Lennart Volz, Jarle Sølie, Dieter Rohrich, and Joao Seco. &amp;lt;b&amp;gt;A Linear Projection Model to Estimate a Proton’s Position in a Pencil Beam For Single Sided Proton Imaging,&amp;lt;/b&amp;gt;. &amp;lt;i&amp;gt;Submitted to Physics in Medicine and Biology.&amp;lt;/i&amp;gt;&lt;br /&gt;
** Submitted manuscript: [[Media: Authors manuscript.pdf | PDF]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Pettersen, Helge Egil Seime, Johan Alme, Gergely Gabor Barnafoldi, Alba Garcıa-Santos, Ola Grøttvik, Håvard Helstrup, Kristin Fanebust Hetland, Ilker Meric, Odd Harald Odland, Gabor Papp, Thomas Peitzmann, Dieter Röhrich, Joao Seco, Hesam Shafiee, Eivind Vågslid Skjæveland, Ganesh Tambave, Kjetil Ullaland, Monika Varga-Kofarago, Lennart Volz, Boris Wagner and Shiming Yang. &amp;lt;b&amp;gt;Design Optimization of a Pixel Based Range Telescope for Proton Computed Tomography.&amp;lt;/b&amp;gt; &amp;lt;i&amp;gt;Submitted to Physica Medica Special Issue: Advances in Geant4 for medicine.&amp;lt;/i&amp;gt;&lt;br /&gt;
** Submitted manuscript: [[Media: Pettersen et al. - Design Optimization of a Pixel Based Range Telesco.pdf| PDF]]&lt;br /&gt;
&lt;br /&gt;
==== Under construction ====&lt;br /&gt;
* J. Sølie, H. E. S. Pettersen, I. Meric, O. H. Odland, H. Helstrup and D. Röhrich: &amp;lt;b&amp;gt;A comparison of longitudinal and lateral range for protons traversing complex media using GATE, MCNP6 and FLUKA Monte Carlo simulations&amp;lt;/b&amp;gt;. &amp;lt;i&amp;gt;Rejected by Radiat. Phys. Chem. in conjunction with the [http://conferences.illinois.edu/irrma2017/ IRRMA X] conference.&amp;lt;/i&amp;gt;&lt;br /&gt;
** Preliminary manuscript: [[Media: 1708.00668.pdf |PDF]]&lt;br /&gt;
** arXiv link: [https://arxiv.org/abs/1708.00668  arXiv:1708.00668]&lt;br /&gt;
&lt;br /&gt;
== [[Meetings]] ==&lt;br /&gt;
Notes and slides from the project meetings&lt;br /&gt;
&lt;br /&gt;
== [[Workshops]] ==&lt;br /&gt;
Slides from the project [[Workshops | workshops]]&lt;br /&gt;
&lt;br /&gt;
== [[Workpackages]] ==&lt;br /&gt;
Sections for the different work packages&lt;br /&gt;
&lt;br /&gt;
== [[People]] ==&lt;br /&gt;
Contact info of involved people &lt;br /&gt;
&lt;br /&gt;
== [[Links]] ==&lt;br /&gt;
Link collection of topics regarding the project&lt;br /&gt;
&lt;br /&gt;
== Getting started ==&lt;br /&gt;
* Note: ASK is a placeholder that marks questions &lt;br /&gt;
* Note: Search function is not ideal. It doesn&#039;t find all occurences of the search term, e.g. aries finds libraries but not aries.bccs&lt;br /&gt;
&lt;br /&gt;
* Consult the [//meta.wikimedia.org/wiki/Help:Contents User&#039;s Guide] for information on using the wiki software.&lt;br /&gt;
* [//www.mediawiki.org/wiki/Manual:Configuration_settings Configuration settings list]&lt;br /&gt;
* [//www.mediawiki.org/wiki/Manual:FAQ MediaWiki FAQ]&lt;br /&gt;
* [https://lists.wikimedia.org/mailman/listinfo/mediawiki-announce MediaWiki release mailing list]&lt;/div&gt;</summary>
		<author><name>Hpe090</name></author>
	</entry>
	<entry>
		<id>https://pct.wiki.uib.no/index.php?title=Main_Page&amp;diff=527</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://pct.wiki.uib.no/index.php?title=Main_Page&amp;diff=527"/>
		<updated>2019-01-02T08:27:30Z</updated>

		<summary type="html">&lt;p&gt;Hpe090: /* Theses */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Wiki for the proton CT project&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== [[Documentation]] ==&lt;br /&gt;
[[Documentation]] on how to install and use the involved software packages, the development workflow, etc.&lt;br /&gt;
&lt;br /&gt;
== [[Publications]] ==&lt;br /&gt;
List of publications from the project.&lt;br /&gt;
&lt;br /&gt;
==== Workpackage Reports ====&lt;br /&gt;
* [[Media:pCT-WP1-1-Rev2 design recommendations.pdf | pCT-WP1-01-Rev2 Detector design specifications]] (Rev2: Added carrier board thickness recommendations)&lt;br /&gt;
* [[:File:pCT-WP1-02-Rev3 (Radiation environment and electronics).pdf | pCT-WP1-02-Rev3 Radiation environment and placement of electronics]] (Rev2: Updated results and assumptions, Rev3: Updated with 1-10cm results) (Please feel free to contact [mailto:jars@hvl.no Jarle Rambo Sølie] if there are any questions regarding the contents of this document.&lt;br /&gt;
&lt;br /&gt;
==== Theses ====&lt;br /&gt;
* Daniel Aadnevik - MSc - 2014 - Extremely high-granularity digital tracking calorimeter for the detection of scattered protons in pCT&lt;br /&gt;
* [http://bora.uib.no/bitstream/handle/1956/10412/135279255.pdf?sequence=1&amp;amp;isAllowed=y Kristian Austreim - MSc - 2015 - Proton computed tomography readout testing and detector design]&lt;br /&gt;
* [http://bora.uib.no/bitstream/handle/1956/16041/thesis_final.pdf?sequence=1&amp;amp;isAllowed=y Ola Grøttvik - MSc - 2017 - Design of High-Speed Digital Readout System for Use in Proton Computed Tomography]&lt;br /&gt;
* [http://bora.uib.no/bitstream/handle/1956/16758/PCT_readout_testing_and_detector_HSchaug.pdf?sequence=1&amp;amp;isAllowed=y Håkon Schaug - MSc - 2017 - Proton Beam Test Of A High Granularity Calorimeter For Proton Computed Tomography]&lt;br /&gt;
* [https://brage.bibsys.no/xmlui/bitstream/handle/11250/2434108/16246_FULLTEXT.pdf?sequence=1&amp;amp;isAllowed=y Even Hansen - MSc - 2017 - Charge Diffusion Modelling for a Monolithic Active Pixel Sensor Detector with Application to Proton CT]&lt;br /&gt;
* [http://bora.uib.no/handle/1956/17757 Helge Pettersen - PhD - 2018 - A Digital Tracking Calorimeter for Proton Computed Tomography]&lt;br /&gt;
* [http://bora.uib.no/handle/1956/18748 Simon Kristian Huiberts - MSc - 2018 - Characterization of the ALPIDE chip using He ions (Data from Australian Micro beam, cluster size characteristics). ]&lt;br /&gt;
* [http://bora.uib.no/handle/1956/18058 Viljar Nilsen Ekeland - MSc - 2018 - Characterization of the ALPIDE chip using protons (Data from Oslo beam test, cluster size and LET correlation with different bias voltages).]&lt;br /&gt;
* [http://bora.uib.no/handle/1956/18057 Susmita Afroz - MSc - 2018 - Noise and Cluster Size Studies of ALPIDE-CMOS Pixel Sensor for pCT]&lt;br /&gt;
* Silje Grimstad - MSc (HVL) - 2019 - ALPIDE Cluster simulations (Building database of cluster characteristics, simulation of clusters using said database. Position and cluster separation algorithms).&lt;br /&gt;
* Alba Garcia Santos - MSc (Utrecht) - 2019 - Improvements of track reconstruction algorithms in pixel-based pCT calorimeters&lt;br /&gt;
* Aleksei Kuleshov - MSc - 2019 - Proton CT monitoring and ALPIDE control (MQTT protocol server, System workflow, GUI implementation).&lt;br /&gt;
&lt;br /&gt;
==== Journal Articles ====&lt;br /&gt;
* Pettersen, H.E.S., J. Alme, A. van den Brink, M. Chaar, D. Fehlker, I. Meric, O.H. Odland, et al. &amp;lt;b&amp;gt;Proton Tracking in a High-Granularity Digital Tracking Calorimeter for Proton CT Purposes&amp;lt;/b&amp;gt;.  &amp;lt;i&amp;gt;Nuclear Instruments and Methods in Physics Research A 860C, 51–61. doi:10.1016/j.nima.2017.02.007.&amp;lt;/i&amp;gt;&lt;br /&gt;
** Published manuscript: [[Media: 1-s2.0-S0168900217301882-main.pdf | PDF]]&lt;br /&gt;
** Elsevier link: [http://www.sciencedirect.com/science/article/pii/S0168900217301882 doi:10.1016/j.nima.2017.02.007]&lt;br /&gt;
** arXiv link: [https://arxiv.org/abs/1611.02031 arXiv:1611.02031]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Pettersen, H.E.S., Chaar, M., Meric, I., Odland, O.H., Sølie, J., Röhrich, D. &amp;lt;b&amp;gt;Accuracy of parameterized proton range models; a comparison&amp;lt;/b&amp;gt;. &amp;lt;i&amp;gt;Radiation Physics and Chemistry, 144 (C): 295-297 (2018). doi:10.1016/j.radphyschem.2017.08.02&amp;lt;/i&amp;gt;&lt;br /&gt;
** Published manuscript: [[Media: Comparison of different calculation methods of proton ranges.pdf | PDF]]&lt;br /&gt;
** Elsevier link: [http://www.sciencedirect.com/science/article/pii/S0969806X17303869?via%3Dihub 10.1016/j.radphyschem.2017.08.028]&lt;br /&gt;
** arXiv link: [https://arxiv.org/abs/1704.08854  arXiv:1704.08854]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Pettersen, H. E. S., and D. Röhrich. 2017. &amp;lt;b&amp;gt;Kreftbehandling Med Protonterapi Og Proton CT.&amp;lt;/b&amp;gt; &amp;lt;i&amp;gt;Fra Fysikkens Verden, December 2017.&amp;lt;/i&amp;gt;&lt;br /&gt;
** Published article: [[Media: FFV-proton-CT-ensidig.pdf | PDF]]&lt;br /&gt;
** [http://norskfysisk.no/filer/FFV/2017/FFV-2017-4.pdf Magazine at norskfysisk.no]&lt;br /&gt;
&lt;br /&gt;
==== In review ====&lt;br /&gt;
* Pettersen, H.E.S., Meric, I., Odland, O.H., Shafiee, H., Sølie, J., Röhrich, D. &amp;lt;b&amp;gt;Proton Tracking Algorithm for Pixel Based Range Telescopes for Proton Computed Tomography&amp;lt;/b&amp;gt;. &amp;lt;i&amp;gt;Revision submitted to Web of Conferences after the &amp;quot;Connecting the Dots&amp;quot; conference.&amp;lt;/i&amp;gt;&lt;br /&gt;
** Revised manuscript: [[Media: detector-proton-tracking.pdf | PDF]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Pettersen, Helge Egil Seime, Lennart Volz, Jarle Sølie, Dieter Rohrich, and Joao Seco. &amp;lt;b&amp;gt;A Linear Projection Model to Estimate a Proton’s Position in a Pencil Beam For Single Sided Proton Imaging,&amp;lt;/b&amp;gt;. &amp;lt;i&amp;gt;Submitted to Physics in Medicine and Biology.&amp;lt;/i&amp;gt;&lt;br /&gt;
** Submitted manuscript: [[Media: Authors manuscript.pdf | PDF]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Pettersen, Helge Egil Seime, Johan Alme, Gergely Gabor Barnafoldi, Alba Garcıa-Santos, Ola Grøttvik, Håvard Helstrup, Kristin Fanebust Hetland, Ilker Meric, Odd Harald Odland, Gabor Papp, Thomas Peitzmann, Dieter Röhrich, Joao Seco, Hesam Shafiee, Eivind Vågslid Skjæveland, Ganesh Tambave, Kjetil Ullaland, Monika Varga-Kofarago, Lennart Volz, Boris Wagner and Shiming Yang. &amp;lt;b&amp;gt;Design Optimization of a Pixel Based Range Telescope for Proton Computed Tomography.&amp;lt;/b&amp;gt; &amp;lt;i&amp;gt;Submitted to Physica Medica Special Issue: Advances in Geant4 for medicine.&amp;lt;/i&amp;gt;&lt;br /&gt;
** Submitted manuscript: [[Media: Pettersen et al. - Design Optimization of a Pixel Based Range Telesco.pdf| PDF]]&lt;br /&gt;
&lt;br /&gt;
==== Under construction ====&lt;br /&gt;
* J. Sølie, H. E. S. Pettersen, I. Meric, O. H. Odland, H. Helstrup and D. Röhrich: &amp;lt;b&amp;gt;A comparison of longitudinal and lateral range for protons traversing complex media using GATE, MCNP6 and FLUKA Monte Carlo simulations&amp;lt;/b&amp;gt;. &amp;lt;i&amp;gt;Rejected by Radiat. Phys. Chem. in conjunction with the [http://conferences.illinois.edu/irrma2017/ IRRMA X] conference.&amp;lt;/i&amp;gt;&lt;br /&gt;
** Preliminary manuscript: [[Media: 1708.00668.pdf |PDF]]&lt;br /&gt;
** arXiv link: [https://arxiv.org/abs/1708.00668  arXiv:1708.00668]&lt;br /&gt;
&lt;br /&gt;
== [[Meetings]] ==&lt;br /&gt;
Notes and slides from the project meetings&lt;br /&gt;
&lt;br /&gt;
== [[Workshops]] ==&lt;br /&gt;
Slides from the project [[Workshops | workshops]]&lt;br /&gt;
&lt;br /&gt;
== [[Workpackages]] ==&lt;br /&gt;
Sections for the different work packages&lt;br /&gt;
&lt;br /&gt;
== [[People]] ==&lt;br /&gt;
Contact info of involved people &lt;br /&gt;
&lt;br /&gt;
== [[Links]] ==&lt;br /&gt;
Link collection of topics regarding the project&lt;br /&gt;
&lt;br /&gt;
== Getting started ==&lt;br /&gt;
* Note: ASK is a placeholder that marks questions &lt;br /&gt;
* Note: Search function is not ideal. It doesn&#039;t find all occurences of the search term, e.g. aries finds libraries but not aries.bccs&lt;br /&gt;
&lt;br /&gt;
* Consult the [//meta.wikimedia.org/wiki/Help:Contents User&#039;s Guide] for information on using the wiki software.&lt;br /&gt;
* [//www.mediawiki.org/wiki/Manual:Configuration_settings Configuration settings list]&lt;br /&gt;
* [//www.mediawiki.org/wiki/Manual:FAQ MediaWiki FAQ]&lt;br /&gt;
* [https://lists.wikimedia.org/mailman/listinfo/mediawiki-announce MediaWiki release mailing list]&lt;/div&gt;</summary>
		<author><name>Hpe090</name></author>
	</entry>
	<entry>
		<id>https://pct.wiki.uib.no/index.php?title=Main_Page&amp;diff=526</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://pct.wiki.uib.no/index.php?title=Main_Page&amp;diff=526"/>
		<updated>2019-01-02T08:25:56Z</updated>

		<summary type="html">&lt;p&gt;Hpe090: /* Theses */ added MScs&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Wiki for the proton CT project&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== [[Documentation]] ==&lt;br /&gt;
[[Documentation]] on how to install and use the involved software packages, the development workflow, etc.&lt;br /&gt;
&lt;br /&gt;
== [[Publications]] ==&lt;br /&gt;
List of publications from the project.&lt;br /&gt;
&lt;br /&gt;
==== Workpackage Reports ====&lt;br /&gt;
* [[Media:pCT-WP1-1-Rev2 design recommendations.pdf | pCT-WP1-01-Rev2 Detector design specifications]] (Rev2: Added carrier board thickness recommendations)&lt;br /&gt;
* [[:File:pCT-WP1-02-Rev3 (Radiation environment and electronics).pdf | pCT-WP1-02-Rev3 Radiation environment and placement of electronics]] (Rev2: Updated results and assumptions, Rev3: Updated with 1-10cm results) (Please feel free to contact [mailto:jars@hvl.no Jarle Rambo Sølie] if there are any questions regarding the contents of this document.&lt;br /&gt;
&lt;br /&gt;
==== Theses ====&lt;br /&gt;
* Daniel Aadnevik - MSc - 2014 - Extremely high-granularity digital tracking calorimeter for the detection of scattered protons in pCT&lt;br /&gt;
* [http://bora.uib.no/bitstream/handle/1956/10412/135279255.pdf?sequence=1&amp;amp;isAllowed=y Kristian Austreim - MSc - 2015 - Proton computed tomography readout testing and detector design]&lt;br /&gt;
* [http://bora.uib.no/bitstream/handle/1956/16041/thesis_final.pdf?sequence=1&amp;amp;isAllowed=y Ola Grøttvik - MSc - 2017 - Design of High-Speed Digital Readout System for Use in Proton Computed Tomography]&lt;br /&gt;
* [http://bora.uib.no/bitstream/handle/1956/16758/PCT_readout_testing_and_detector_HSchaug.pdf?sequence=1&amp;amp;isAllowed=y Håkon Schaug - MSc - 2017 - Proton Beam Test Of A High Granularity Calorimeter For Proton Computed Tomography]&lt;br /&gt;
* [https://brage.bibsys.no/xmlui/bitstream/handle/11250/2434108/16246_FULLTEXT.pdf?sequence=1&amp;amp;isAllowed=y Even Hansen - MSc - 2017 - Charge Diffusion Modelling for a Monolithic Active Pixel Sensor Detector with Application to Proton CT]&lt;br /&gt;
* [http://bora.uib.no/handle/1956/17757 Helge Pettersen - PhD - 2018 - A Digital Tracking Calorimeter for Proton Computed Tomography]&lt;br /&gt;
* [http://bora.uib.no/handle/1956/18748 Simon Kristian Huiberts - MSc - 2018 - Characterization of the ALPIDE chip using He ions (Data from Australian Micro beam, cluster size characteristics). ]&lt;br /&gt;
* [http://bora.uib.no/handle/1956/18058 Viljar Nilsen Ekeland - MSc - 2018 - Characterization of the ALPIDE chip using protons (Data from Oslo beam test, cluster size and LET correlation with different bias voltages).]&lt;br /&gt;
* [http://bora.uib.no/handle/1956/18057 Susmita Afroz - MSc - 2018 - Noise and Cluster Size Studies of ALPIDE-CMOS Pixel Sensor for pCT]&lt;br /&gt;
* Silje Grimstad - MSc - 2019 - ALPIDE Cluster simulations (Building database of cluster characteristics, simulation of clusters using said database. Position and cluster separation algorithms).&lt;br /&gt;
* Aleksei Kuleshov - MSc - 2019 - Proton CT monitoring and ALPIDE control (MQTT protocol server, System workflow, GUI implementation).&lt;br /&gt;
&lt;br /&gt;
==== Journal Articles ====&lt;br /&gt;
* Pettersen, H.E.S., J. Alme, A. van den Brink, M. Chaar, D. Fehlker, I. Meric, O.H. Odland, et al. &amp;lt;b&amp;gt;Proton Tracking in a High-Granularity Digital Tracking Calorimeter for Proton CT Purposes&amp;lt;/b&amp;gt;.  &amp;lt;i&amp;gt;Nuclear Instruments and Methods in Physics Research A 860C, 51–61. doi:10.1016/j.nima.2017.02.007.&amp;lt;/i&amp;gt;&lt;br /&gt;
** Published manuscript: [[Media: 1-s2.0-S0168900217301882-main.pdf | PDF]]&lt;br /&gt;
** Elsevier link: [http://www.sciencedirect.com/science/article/pii/S0168900217301882 doi:10.1016/j.nima.2017.02.007]&lt;br /&gt;
** arXiv link: [https://arxiv.org/abs/1611.02031 arXiv:1611.02031]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Pettersen, H.E.S., Chaar, M., Meric, I., Odland, O.H., Sølie, J., Röhrich, D. &amp;lt;b&amp;gt;Accuracy of parameterized proton range models; a comparison&amp;lt;/b&amp;gt;. &amp;lt;i&amp;gt;Radiation Physics and Chemistry, 144 (C): 295-297 (2018). doi:10.1016/j.radphyschem.2017.08.02&amp;lt;/i&amp;gt;&lt;br /&gt;
** Published manuscript: [[Media: Comparison of different calculation methods of proton ranges.pdf | PDF]]&lt;br /&gt;
** Elsevier link: [http://www.sciencedirect.com/science/article/pii/S0969806X17303869?via%3Dihub 10.1016/j.radphyschem.2017.08.028]&lt;br /&gt;
** arXiv link: [https://arxiv.org/abs/1704.08854  arXiv:1704.08854]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Pettersen, H. E. S., and D. Röhrich. 2017. &amp;lt;b&amp;gt;Kreftbehandling Med Protonterapi Og Proton CT.&amp;lt;/b&amp;gt; &amp;lt;i&amp;gt;Fra Fysikkens Verden, December 2017.&amp;lt;/i&amp;gt;&lt;br /&gt;
** Published article: [[Media: FFV-proton-CT-ensidig.pdf | PDF]]&lt;br /&gt;
** [http://norskfysisk.no/filer/FFV/2017/FFV-2017-4.pdf Magazine at norskfysisk.no]&lt;br /&gt;
&lt;br /&gt;
==== In review ====&lt;br /&gt;
* Pettersen, H.E.S., Meric, I., Odland, O.H., Shafiee, H., Sølie, J., Röhrich, D. &amp;lt;b&amp;gt;Proton Tracking Algorithm for Pixel Based Range Telescopes for Proton Computed Tomography&amp;lt;/b&amp;gt;. &amp;lt;i&amp;gt;Revision submitted to Web of Conferences after the &amp;quot;Connecting the Dots&amp;quot; conference.&amp;lt;/i&amp;gt;&lt;br /&gt;
** Revised manuscript: [[Media: detector-proton-tracking.pdf | PDF]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Pettersen, Helge Egil Seime, Lennart Volz, Jarle Sølie, Dieter Rohrich, and Joao Seco. &amp;lt;b&amp;gt;A Linear Projection Model to Estimate a Proton’s Position in a Pencil Beam For Single Sided Proton Imaging,&amp;lt;/b&amp;gt;. &amp;lt;i&amp;gt;Submitted to Physics in Medicine and Biology.&amp;lt;/i&amp;gt;&lt;br /&gt;
** Submitted manuscript: [[Media: Authors manuscript.pdf | PDF]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Pettersen, Helge Egil Seime, Johan Alme, Gergely Gabor Barnafoldi, Alba Garcıa-Santos, Ola Grøttvik, Håvard Helstrup, Kristin Fanebust Hetland, Ilker Meric, Odd Harald Odland, Gabor Papp, Thomas Peitzmann, Dieter Röhrich, Joao Seco, Hesam Shafiee, Eivind Vågslid Skjæveland, Ganesh Tambave, Kjetil Ullaland, Monika Varga-Kofarago, Lennart Volz, Boris Wagner and Shiming Yang. &amp;lt;b&amp;gt;Design Optimization of a Pixel Based Range Telescope for Proton Computed Tomography.&amp;lt;/b&amp;gt; &amp;lt;i&amp;gt;Submitted to Physica Medica Special Issue: Advances in Geant4 for medicine.&amp;lt;/i&amp;gt;&lt;br /&gt;
** Submitted manuscript: [[Media: Pettersen et al. - Design Optimization of a Pixel Based Range Telesco.pdf| PDF]]&lt;br /&gt;
&lt;br /&gt;
==== Under construction ====&lt;br /&gt;
* J. Sølie, H. E. S. Pettersen, I. Meric, O. H. Odland, H. Helstrup and D. Röhrich: &amp;lt;b&amp;gt;A comparison of longitudinal and lateral range for protons traversing complex media using GATE, MCNP6 and FLUKA Monte Carlo simulations&amp;lt;/b&amp;gt;. &amp;lt;i&amp;gt;Rejected by Radiat. Phys. Chem. in conjunction with the [http://conferences.illinois.edu/irrma2017/ IRRMA X] conference.&amp;lt;/i&amp;gt;&lt;br /&gt;
** Preliminary manuscript: [[Media: 1708.00668.pdf |PDF]]&lt;br /&gt;
** arXiv link: [https://arxiv.org/abs/1708.00668  arXiv:1708.00668]&lt;br /&gt;
&lt;br /&gt;
== [[Meetings]] ==&lt;br /&gt;
Notes and slides from the project meetings&lt;br /&gt;
&lt;br /&gt;
== [[Workshops]] ==&lt;br /&gt;
Slides from the project [[Workshops | workshops]]&lt;br /&gt;
&lt;br /&gt;
== [[Workpackages]] ==&lt;br /&gt;
Sections for the different work packages&lt;br /&gt;
&lt;br /&gt;
== [[People]] ==&lt;br /&gt;
Contact info of involved people &lt;br /&gt;
&lt;br /&gt;
== [[Links]] ==&lt;br /&gt;
Link collection of topics regarding the project&lt;br /&gt;
&lt;br /&gt;
== Getting started ==&lt;br /&gt;
* Note: ASK is a placeholder that marks questions &lt;br /&gt;
* Note: Search function is not ideal. It doesn&#039;t find all occurences of the search term, e.g. aries finds libraries but not aries.bccs&lt;br /&gt;
&lt;br /&gt;
* Consult the [//meta.wikimedia.org/wiki/Help:Contents User&#039;s Guide] for information on using the wiki software.&lt;br /&gt;
* [//www.mediawiki.org/wiki/Manual:Configuration_settings Configuration settings list]&lt;br /&gt;
* [//www.mediawiki.org/wiki/Manual:FAQ MediaWiki FAQ]&lt;br /&gt;
* [https://lists.wikimedia.org/mailman/listinfo/mediawiki-announce MediaWiki release mailing list]&lt;/div&gt;</summary>
		<author><name>Hpe090</name></author>
	</entry>
	<entry>
		<id>https://pct.wiki.uib.no/index.php?title=Main_Page&amp;diff=525</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://pct.wiki.uib.no/index.php?title=Main_Page&amp;diff=525"/>
		<updated>2019-01-02T08:19:20Z</updated>

		<summary type="html">&lt;p&gt;Hpe090: /* Journal Articles */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Wiki for the proton CT project&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== [[Documentation]] ==&lt;br /&gt;
[[Documentation]] on how to install and use the involved software packages, the development workflow, etc.&lt;br /&gt;
&lt;br /&gt;
== [[Publications]] ==&lt;br /&gt;
List of publications from the project.&lt;br /&gt;
&lt;br /&gt;
==== Workpackage Reports ====&lt;br /&gt;
* [[Media:pCT-WP1-1-Rev2 design recommendations.pdf | pCT-WP1-01-Rev2 Detector design specifications]] (Rev2: Added carrier board thickness recommendations)&lt;br /&gt;
* [[:File:pCT-WP1-02-Rev3 (Radiation environment and electronics).pdf | pCT-WP1-02-Rev3 Radiation environment and placement of electronics]] (Rev2: Updated results and assumptions, Rev3: Updated with 1-10cm results) (Please feel free to contact [mailto:jars@hvl.no Jarle Rambo Sølie] if there are any questions regarding the contents of this document.&lt;br /&gt;
&lt;br /&gt;
==== Theses ====&lt;br /&gt;
* [http://bora.uib.no/bitstream/handle/1956/10412/135279255.pdf?sequence=1&amp;amp;isAllowed=y Kristian Austreim - MSc - 2015 - Proton computed tomography readout testing and detector design]&lt;br /&gt;
* [http://bora.uib.no/bitstream/handle/1956/16041/thesis_final.pdf?sequence=1&amp;amp;isAllowed=y Ola Grøttvik - MSc - 2017 - Design of High-Speed Digital Readout System for Use in Proton Computed Tomography]&lt;br /&gt;
* [http://bora.uib.no/bitstream/handle/1956/16758/PCT_readout_testing_and_detector_HSchaug.pdf?sequence=1&amp;amp;isAllowed=y Håkon Schaug - MSc - 2017 - Proton Beam Test Of A High Granularity Calorimeter For Proton Computed Tomography]&lt;br /&gt;
* [https://brage.bibsys.no/xmlui/bitstream/handle/11250/2434108/16246_FULLTEXT.pdf?sequence=1&amp;amp;isAllowed=y Even Hansen - MSc - 2017 - Charge Diffusion Modelling for a Monolithic Active Pixel Sensor Detector with Application to Proton CT]&lt;br /&gt;
* [[:File:A digital tracking calorimeter for proton computed tomography.pdf | Helge Pettersen - PhD - 2018 - A Digital Tracking Calorimeter for Proton Computed Tomography]]&lt;br /&gt;
* Simon Kristian Huiberts - MSc - 2018 - Characterization of the ALPIDE chip using He ions (Data from Australian Micro beam, cluster size characteristics).&lt;br /&gt;
* Villiar Nilsen Ekeland - MSc - 2018 - Characterization of the ALPIDE chip using protons (Data from Oslo beam test, cluster size and LET correlation with different bias voltages).&lt;br /&gt;
* Silje Grimstad - MSc - 2019 - ALPIDE Cluster simulations (Building database of cluster characteristics, simulation of clusters using said database. Position and cluster separation algorithms).&lt;br /&gt;
* Aleksei Kuleshov - MSc - 2019 - Proton CT monitoring and ALPIDE control (MQTT protocol server, System workflow, GUI implementation). &lt;br /&gt;
==== Journal Articles ====&lt;br /&gt;
* Pettersen, H.E.S., J. Alme, A. van den Brink, M. Chaar, D. Fehlker, I. Meric, O.H. Odland, et al. &amp;lt;b&amp;gt;Proton Tracking in a High-Granularity Digital Tracking Calorimeter for Proton CT Purposes&amp;lt;/b&amp;gt;.  &amp;lt;i&amp;gt;Nuclear Instruments and Methods in Physics Research A 860C, 51–61. doi:10.1016/j.nima.2017.02.007.&amp;lt;/i&amp;gt;&lt;br /&gt;
** Published manuscript: [[Media: 1-s2.0-S0168900217301882-main.pdf | PDF]]&lt;br /&gt;
** Elsevier link: [http://www.sciencedirect.com/science/article/pii/S0168900217301882 doi:10.1016/j.nima.2017.02.007]&lt;br /&gt;
** arXiv link: [https://arxiv.org/abs/1611.02031 arXiv:1611.02031]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Pettersen, H.E.S., Chaar, M., Meric, I., Odland, O.H., Sølie, J., Röhrich, D. &amp;lt;b&amp;gt;Accuracy of parameterized proton range models; a comparison&amp;lt;/b&amp;gt;. &amp;lt;i&amp;gt;Radiation Physics and Chemistry, 144 (C): 295-297 (2018). doi:10.1016/j.radphyschem.2017.08.02&amp;lt;/i&amp;gt;&lt;br /&gt;
** Published manuscript: [[Media: Comparison of different calculation methods of proton ranges.pdf | PDF]]&lt;br /&gt;
** Elsevier link: [http://www.sciencedirect.com/science/article/pii/S0969806X17303869?via%3Dihub 10.1016/j.radphyschem.2017.08.028]&lt;br /&gt;
** arXiv link: [https://arxiv.org/abs/1704.08854  arXiv:1704.08854]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Pettersen, H. E. S., and D. Röhrich. 2017. &amp;lt;b&amp;gt;Kreftbehandling Med Protonterapi Og Proton CT.&amp;lt;/b&amp;gt; &amp;lt;i&amp;gt;Fra Fysikkens Verden, December 2017.&amp;lt;/i&amp;gt;&lt;br /&gt;
** Published article: [[Media: FFV-proton-CT-ensidig.pdf | PDF]]&lt;br /&gt;
** [http://norskfysisk.no/filer/FFV/2017/FFV-2017-4.pdf Magazine at norskfysisk.no]&lt;br /&gt;
&lt;br /&gt;
==== In review ====&lt;br /&gt;
* Pettersen, H.E.S., Meric, I., Odland, O.H., Shafiee, H., Sølie, J., Röhrich, D. &amp;lt;b&amp;gt;Proton Tracking Algorithm for Pixel Based Range Telescopes for Proton Computed Tomography&amp;lt;/b&amp;gt;. &amp;lt;i&amp;gt;Revision submitted to Web of Conferences after the &amp;quot;Connecting the Dots&amp;quot; conference.&amp;lt;/i&amp;gt;&lt;br /&gt;
** Revised manuscript: [[Media: detector-proton-tracking.pdf | PDF]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Pettersen, Helge Egil Seime, Lennart Volz, Jarle Sølie, Dieter Rohrich, and Joao Seco. &amp;lt;b&amp;gt;A Linear Projection Model to Estimate a Proton’s Position in a Pencil Beam For Single Sided Proton Imaging,&amp;lt;/b&amp;gt;. &amp;lt;i&amp;gt;Submitted to Physics in Medicine and Biology.&amp;lt;/i&amp;gt;&lt;br /&gt;
** Submitted manuscript: [[Media: Authors manuscript.pdf | PDF]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Pettersen, Helge Egil Seime, Johan Alme, Gergely Gabor Barnafoldi, Alba Garcıa-Santos, Ola Grøttvik, Håvard Helstrup, Kristin Fanebust Hetland, Ilker Meric, Odd Harald Odland, Gabor Papp, Thomas Peitzmann, Dieter Röhrich, Joao Seco, Hesam Shafiee, Eivind Vågslid Skjæveland, Ganesh Tambave, Kjetil Ullaland, Monika Varga-Kofarago, Lennart Volz, Boris Wagner and Shiming Yang. &amp;lt;b&amp;gt;Design Optimization of a Pixel Based Range Telescope for Proton Computed Tomography.&amp;lt;/b&amp;gt; &amp;lt;i&amp;gt;Submitted to Physica Medica Special Issue: Advances in Geant4 for medicine.&amp;lt;/i&amp;gt;&lt;br /&gt;
** Submitted manuscript: [[Media: Pettersen et al. - Design Optimization of a Pixel Based Range Telesco.pdf| PDF]]&lt;br /&gt;
&lt;br /&gt;
==== Under construction ====&lt;br /&gt;
* J. Sølie, H. E. S. Pettersen, I. Meric, O. H. Odland, H. Helstrup and D. Röhrich: &amp;lt;b&amp;gt;A comparison of longitudinal and lateral range for protons traversing complex media using GATE, MCNP6 and FLUKA Monte Carlo simulations&amp;lt;/b&amp;gt;. &amp;lt;i&amp;gt;Rejected by Radiat. Phys. Chem. in conjunction with the [http://conferences.illinois.edu/irrma2017/ IRRMA X] conference.&amp;lt;/i&amp;gt;&lt;br /&gt;
** Preliminary manuscript: [[Media: 1708.00668.pdf |PDF]]&lt;br /&gt;
** arXiv link: [https://arxiv.org/abs/1708.00668  arXiv:1708.00668]&lt;br /&gt;
&lt;br /&gt;
== [[Meetings]] ==&lt;br /&gt;
Notes and slides from the project meetings&lt;br /&gt;
&lt;br /&gt;
== [[Workshops]] ==&lt;br /&gt;
Slides from the project [[Workshops | workshops]]&lt;br /&gt;
&lt;br /&gt;
== [[Workpackages]] ==&lt;br /&gt;
Sections for the different work packages&lt;br /&gt;
&lt;br /&gt;
== [[People]] ==&lt;br /&gt;
Contact info of involved people &lt;br /&gt;
&lt;br /&gt;
== [[Links]] ==&lt;br /&gt;
Link collection of topics regarding the project&lt;br /&gt;
&lt;br /&gt;
== Getting started ==&lt;br /&gt;
* Note: ASK is a placeholder that marks questions &lt;br /&gt;
* Note: Search function is not ideal. It doesn&#039;t find all occurences of the search term, e.g. aries finds libraries but not aries.bccs&lt;br /&gt;
&lt;br /&gt;
* Consult the [//meta.wikimedia.org/wiki/Help:Contents User&#039;s Guide] for information on using the wiki software.&lt;br /&gt;
* [//www.mediawiki.org/wiki/Manual:Configuration_settings Configuration settings list]&lt;br /&gt;
* [//www.mediawiki.org/wiki/Manual:FAQ MediaWiki FAQ]&lt;br /&gt;
* [https://lists.wikimedia.org/mailman/listinfo/mediawiki-announce MediaWiki release mailing list]&lt;/div&gt;</summary>
		<author><name>Hpe090</name></author>
	</entry>
	<entry>
		<id>https://pct.wiki.uib.no/index.php?title=Main_Page&amp;diff=524</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://pct.wiki.uib.no/index.php?title=Main_Page&amp;diff=524"/>
		<updated>2019-01-02T08:17:25Z</updated>

		<summary type="html">&lt;p&gt;Hpe090: /* Under construction */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Wiki for the proton CT project&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== [[Documentation]] ==&lt;br /&gt;
[[Documentation]] on how to install and use the involved software packages, the development workflow, etc.&lt;br /&gt;
&lt;br /&gt;
== [[Publications]] ==&lt;br /&gt;
List of publications from the project.&lt;br /&gt;
&lt;br /&gt;
==== Workpackage Reports ====&lt;br /&gt;
* [[Media:pCT-WP1-1-Rev2 design recommendations.pdf | pCT-WP1-01-Rev2 Detector design specifications]] (Rev2: Added carrier board thickness recommendations)&lt;br /&gt;
* [[:File:pCT-WP1-02-Rev3 (Radiation environment and electronics).pdf | pCT-WP1-02-Rev3 Radiation environment and placement of electronics]] (Rev2: Updated results and assumptions, Rev3: Updated with 1-10cm results) (Please feel free to contact [mailto:jars@hvl.no Jarle Rambo Sølie] if there are any questions regarding the contents of this document.&lt;br /&gt;
&lt;br /&gt;
==== Theses ====&lt;br /&gt;
* [http://bora.uib.no/bitstream/handle/1956/10412/135279255.pdf?sequence=1&amp;amp;isAllowed=y Kristian Austreim - MSc - 2015 - Proton computed tomography readout testing and detector design]&lt;br /&gt;
* [http://bora.uib.no/bitstream/handle/1956/16041/thesis_final.pdf?sequence=1&amp;amp;isAllowed=y Ola Grøttvik - MSc - 2017 - Design of High-Speed Digital Readout System for Use in Proton Computed Tomography]&lt;br /&gt;
* [http://bora.uib.no/bitstream/handle/1956/16758/PCT_readout_testing_and_detector_HSchaug.pdf?sequence=1&amp;amp;isAllowed=y Håkon Schaug - MSc - 2017 - Proton Beam Test Of A High Granularity Calorimeter For Proton Computed Tomography]&lt;br /&gt;
* [https://brage.bibsys.no/xmlui/bitstream/handle/11250/2434108/16246_FULLTEXT.pdf?sequence=1&amp;amp;isAllowed=y Even Hansen - MSc - 2017 - Charge Diffusion Modelling for a Monolithic Active Pixel Sensor Detector with Application to Proton CT]&lt;br /&gt;
* [[:File:A digital tracking calorimeter for proton computed tomography.pdf | Helge Pettersen - PhD - 2018 - A Digital Tracking Calorimeter for Proton Computed Tomography]]&lt;br /&gt;
* Simon Kristian Huiberts - MSc - 2018 - Characterization of the ALPIDE chip using He ions (Data from Australian Micro beam, cluster size characteristics).&lt;br /&gt;
* Villiar Nilsen Ekeland - MSc - 2018 - Characterization of the ALPIDE chip using protons (Data from Oslo beam test, cluster size and LET correlation with different bias voltages).&lt;br /&gt;
* Silje Grimstad - MSc - 2019 - ALPIDE Cluster simulations (Building database of cluster characteristics, simulation of clusters using said database. Position and cluster separation algorithms).&lt;br /&gt;
* Aleksei Kuleshov - MSc - 2019 - Proton CT monitoring and ALPIDE control (MQTT protocol server, System workflow, GUI implementation). &lt;br /&gt;
==== Journal Articles ====&lt;br /&gt;
* Pettersen, H.E.S., J. Alme, A. van den Brink, M. Chaar, D. Fehlker, I. Meric, O.H. Odland, et al. &amp;lt;b&amp;gt;Proton Tracking in a High-Granularity Digital Tracking Calorimeter for Proton CT Purposes&amp;lt;/b&amp;gt;.  Nuclear Instruments and Methods in Physics Research A 860C, 51–61. doi:10.1016/j.nima.2017.02.007. &lt;br /&gt;
** Published manuscript: [[Media: 1-s2.0-S0168900217301882-main.pdf | PDF]]&lt;br /&gt;
** Elsevier link: [http://www.sciencedirect.com/science/article/pii/S0168900217301882 doi:10.1016/j.nima.2017.02.007]&lt;br /&gt;
** arXiv link: [https://arxiv.org/abs/1611.02031 arXiv:1611.02031]&lt;br /&gt;
&lt;br /&gt;
* Pettersen, H.E.S., Chaar, M., Meric, I., Odland, O.H., Sølie, J., Röhrich, D. &amp;lt;b&amp;gt;Accuracy of parameterized proton range models; a comparison&amp;lt;/b&amp;gt;. Radiation Physics and Chemistry, 144 (C): 295-297 (2018). doi:10.1016/j.radphyschem.2017.08.02&lt;br /&gt;
** Published manuscript: [[Media: Comparison of different calculation methods of proton ranges.pdf | PDF]]&lt;br /&gt;
** Elsevier link: [http://www.sciencedirect.com/science/article/pii/S0969806X17303869?via%3Dihub 10.1016/j.radphyschem.2017.08.028]&lt;br /&gt;
** arXiv link: [https://arxiv.org/abs/1704.08854  arXiv:1704.08854]&lt;br /&gt;
&lt;br /&gt;
* Pettersen, H. E. S., and D. Röhrich. 2017. “Kreftbehandling Med Protonterapi Og Proton CT.” Fra Fysikkens Verden, December 2017.&lt;br /&gt;
** Published article: [[Media: FFV-proton-CT-ensidig.pdf | PDF]]&lt;br /&gt;
&lt;br /&gt;
==== In review ====&lt;br /&gt;
* Pettersen, H.E.S., Meric, I., Odland, O.H., Shafiee, H., Sølie, J., Röhrich, D. &amp;lt;b&amp;gt;Proton Tracking Algorithm for Pixel Based Range Telescopes for Proton Computed Tomography&amp;lt;/b&amp;gt;. &amp;lt;i&amp;gt;Revision submitted to Web of Conferences after the &amp;quot;Connecting the Dots&amp;quot; conference.&amp;lt;/i&amp;gt;&lt;br /&gt;
** Revised manuscript: [[Media: detector-proton-tracking.pdf | PDF]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Pettersen, Helge Egil Seime, Lennart Volz, Jarle Sølie, Dieter Rohrich, and Joao Seco. &amp;lt;b&amp;gt;A Linear Projection Model to Estimate a Proton’s Position in a Pencil Beam For Single Sided Proton Imaging,&amp;lt;/b&amp;gt;. &amp;lt;i&amp;gt;Submitted to Physics in Medicine and Biology.&amp;lt;/i&amp;gt;&lt;br /&gt;
** Submitted manuscript: [[Media: Authors manuscript.pdf | PDF]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Pettersen, Helge Egil Seime, Johan Alme, Gergely Gabor Barnafoldi, Alba Garcıa-Santos, Ola Grøttvik, Håvard Helstrup, Kristin Fanebust Hetland, Ilker Meric, Odd Harald Odland, Gabor Papp, Thomas Peitzmann, Dieter Röhrich, Joao Seco, Hesam Shafiee, Eivind Vågslid Skjæveland, Ganesh Tambave, Kjetil Ullaland, Monika Varga-Kofarago, Lennart Volz, Boris Wagner and Shiming Yang. &amp;lt;b&amp;gt;Design Optimization of a Pixel Based Range Telescope for Proton Computed Tomography.&amp;lt;/b&amp;gt; &amp;lt;i&amp;gt;Submitted to Physica Medica Special Issue: Advances in Geant4 for medicine.&amp;lt;/i&amp;gt;&lt;br /&gt;
** Submitted manuscript: [[Media: Pettersen et al. - Design Optimization of a Pixel Based Range Telesco.pdf| PDF]]&lt;br /&gt;
&lt;br /&gt;
==== Under construction ====&lt;br /&gt;
* J. Sølie, H. E. S. Pettersen, I. Meric, O. H. Odland, H. Helstrup and D. Röhrich: &amp;lt;b&amp;gt;A comparison of longitudinal and lateral range for protons traversing complex media using GATE, MCNP6 and FLUKA Monte Carlo simulations&amp;lt;/b&amp;gt;. &amp;lt;i&amp;gt;Rejected by Radiat. Phys. Chem. in conjunction with the [http://conferences.illinois.edu/irrma2017/ IRRMA X] conference.&amp;lt;/i&amp;gt;&lt;br /&gt;
** Preliminary manuscript: [[Media: 1708.00668.pdf |PDF]]&lt;br /&gt;
** arXiv link: [https://arxiv.org/abs/1708.00668  arXiv:1708.00668]&lt;br /&gt;
&lt;br /&gt;
== [[Meetings]] ==&lt;br /&gt;
Notes and slides from the project meetings&lt;br /&gt;
&lt;br /&gt;
== [[Workshops]] ==&lt;br /&gt;
Slides from the project [[Workshops | workshops]]&lt;br /&gt;
&lt;br /&gt;
== [[Workpackages]] ==&lt;br /&gt;
Sections for the different work packages&lt;br /&gt;
&lt;br /&gt;
== [[People]] ==&lt;br /&gt;
Contact info of involved people &lt;br /&gt;
&lt;br /&gt;
== [[Links]] ==&lt;br /&gt;
Link collection of topics regarding the project&lt;br /&gt;
&lt;br /&gt;
== Getting started ==&lt;br /&gt;
* Note: ASK is a placeholder that marks questions &lt;br /&gt;
* Note: Search function is not ideal. It doesn&#039;t find all occurences of the search term, e.g. aries finds libraries but not aries.bccs&lt;br /&gt;
&lt;br /&gt;
* Consult the [//meta.wikimedia.org/wiki/Help:Contents User&#039;s Guide] for information on using the wiki software.&lt;br /&gt;
* [//www.mediawiki.org/wiki/Manual:Configuration_settings Configuration settings list]&lt;br /&gt;
* [//www.mediawiki.org/wiki/Manual:FAQ MediaWiki FAQ]&lt;br /&gt;
* [https://lists.wikimedia.org/mailman/listinfo/mediawiki-announce MediaWiki release mailing list]&lt;/div&gt;</summary>
		<author><name>Hpe090</name></author>
	</entry>
	<entry>
		<id>https://pct.wiki.uib.no/index.php?title=Main_Page&amp;diff=523</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://pct.wiki.uib.no/index.php?title=Main_Page&amp;diff=523"/>
		<updated>2019-01-02T08:16:53Z</updated>

		<summary type="html">&lt;p&gt;Hpe090: /* In review */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Wiki for the proton CT project&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== [[Documentation]] ==&lt;br /&gt;
[[Documentation]] on how to install and use the involved software packages, the development workflow, etc.&lt;br /&gt;
&lt;br /&gt;
== [[Publications]] ==&lt;br /&gt;
List of publications from the project.&lt;br /&gt;
&lt;br /&gt;
==== Workpackage Reports ====&lt;br /&gt;
* [[Media:pCT-WP1-1-Rev2 design recommendations.pdf | pCT-WP1-01-Rev2 Detector design specifications]] (Rev2: Added carrier board thickness recommendations)&lt;br /&gt;
* [[:File:pCT-WP1-02-Rev3 (Radiation environment and electronics).pdf | pCT-WP1-02-Rev3 Radiation environment and placement of electronics]] (Rev2: Updated results and assumptions, Rev3: Updated with 1-10cm results) (Please feel free to contact [mailto:jars@hvl.no Jarle Rambo Sølie] if there are any questions regarding the contents of this document.&lt;br /&gt;
&lt;br /&gt;
==== Theses ====&lt;br /&gt;
* [http://bora.uib.no/bitstream/handle/1956/10412/135279255.pdf?sequence=1&amp;amp;isAllowed=y Kristian Austreim - MSc - 2015 - Proton computed tomography readout testing and detector design]&lt;br /&gt;
* [http://bora.uib.no/bitstream/handle/1956/16041/thesis_final.pdf?sequence=1&amp;amp;isAllowed=y Ola Grøttvik - MSc - 2017 - Design of High-Speed Digital Readout System for Use in Proton Computed Tomography]&lt;br /&gt;
* [http://bora.uib.no/bitstream/handle/1956/16758/PCT_readout_testing_and_detector_HSchaug.pdf?sequence=1&amp;amp;isAllowed=y Håkon Schaug - MSc - 2017 - Proton Beam Test Of A High Granularity Calorimeter For Proton Computed Tomography]&lt;br /&gt;
* [https://brage.bibsys.no/xmlui/bitstream/handle/11250/2434108/16246_FULLTEXT.pdf?sequence=1&amp;amp;isAllowed=y Even Hansen - MSc - 2017 - Charge Diffusion Modelling for a Monolithic Active Pixel Sensor Detector with Application to Proton CT]&lt;br /&gt;
* [[:File:A digital tracking calorimeter for proton computed tomography.pdf | Helge Pettersen - PhD - 2018 - A Digital Tracking Calorimeter for Proton Computed Tomography]]&lt;br /&gt;
* Simon Kristian Huiberts - MSc - 2018 - Characterization of the ALPIDE chip using He ions (Data from Australian Micro beam, cluster size characteristics).&lt;br /&gt;
* Villiar Nilsen Ekeland - MSc - 2018 - Characterization of the ALPIDE chip using protons (Data from Oslo beam test, cluster size and LET correlation with different bias voltages).&lt;br /&gt;
* Silje Grimstad - MSc - 2019 - ALPIDE Cluster simulations (Building database of cluster characteristics, simulation of clusters using said database. Position and cluster separation algorithms).&lt;br /&gt;
* Aleksei Kuleshov - MSc - 2019 - Proton CT monitoring and ALPIDE control (MQTT protocol server, System workflow, GUI implementation). &lt;br /&gt;
==== Journal Articles ====&lt;br /&gt;
* Pettersen, H.E.S., J. Alme, A. van den Brink, M. Chaar, D. Fehlker, I. Meric, O.H. Odland, et al. &amp;lt;b&amp;gt;Proton Tracking in a High-Granularity Digital Tracking Calorimeter for Proton CT Purposes&amp;lt;/b&amp;gt;.  Nuclear Instruments and Methods in Physics Research A 860C, 51–61. doi:10.1016/j.nima.2017.02.007. &lt;br /&gt;
** Published manuscript: [[Media: 1-s2.0-S0168900217301882-main.pdf | PDF]]&lt;br /&gt;
** Elsevier link: [http://www.sciencedirect.com/science/article/pii/S0168900217301882 doi:10.1016/j.nima.2017.02.007]&lt;br /&gt;
** arXiv link: [https://arxiv.org/abs/1611.02031 arXiv:1611.02031]&lt;br /&gt;
&lt;br /&gt;
* Pettersen, H.E.S., Chaar, M., Meric, I., Odland, O.H., Sølie, J., Röhrich, D. &amp;lt;b&amp;gt;Accuracy of parameterized proton range models; a comparison&amp;lt;/b&amp;gt;. Radiation Physics and Chemistry, 144 (C): 295-297 (2018). doi:10.1016/j.radphyschem.2017.08.02&lt;br /&gt;
** Published manuscript: [[Media: Comparison of different calculation methods of proton ranges.pdf | PDF]]&lt;br /&gt;
** Elsevier link: [http://www.sciencedirect.com/science/article/pii/S0969806X17303869?via%3Dihub 10.1016/j.radphyschem.2017.08.028]&lt;br /&gt;
** arXiv link: [https://arxiv.org/abs/1704.08854  arXiv:1704.08854]&lt;br /&gt;
&lt;br /&gt;
* Pettersen, H. E. S., and D. Röhrich. 2017. “Kreftbehandling Med Protonterapi Og Proton CT.” Fra Fysikkens Verden, December 2017.&lt;br /&gt;
** Published article: [[Media: FFV-proton-CT-ensidig.pdf | PDF]]&lt;br /&gt;
&lt;br /&gt;
==== In review ====&lt;br /&gt;
* Pettersen, H.E.S., Meric, I., Odland, O.H., Shafiee, H., Sølie, J., Röhrich, D. &amp;lt;b&amp;gt;Proton Tracking Algorithm for Pixel Based Range Telescopes for Proton Computed Tomography&amp;lt;/b&amp;gt;. &amp;lt;i&amp;gt;Revision submitted to Web of Conferences after the &amp;quot;Connecting the Dots&amp;quot; conference.&amp;lt;/i&amp;gt;&lt;br /&gt;
** Revised manuscript: [[Media: detector-proton-tracking.pdf | PDF]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Pettersen, Helge Egil Seime, Lennart Volz, Jarle Sølie, Dieter Rohrich, and Joao Seco. &amp;lt;b&amp;gt;A Linear Projection Model to Estimate a Proton’s Position in a Pencil Beam For Single Sided Proton Imaging,&amp;lt;/b&amp;gt;. &amp;lt;i&amp;gt;Submitted to Physics in Medicine and Biology.&amp;lt;/i&amp;gt;&lt;br /&gt;
** Submitted manuscript: [[Media: Authors manuscript.pdf | PDF]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Pettersen, Helge Egil Seime, Johan Alme, Gergely Gabor Barnafoldi, Alba Garcıa-Santos, Ola Grøttvik, Håvard Helstrup, Kristin Fanebust Hetland, Ilker Meric, Odd Harald Odland, Gabor Papp, Thomas Peitzmann, Dieter Röhrich, Joao Seco, Hesam Shafiee, Eivind Vågslid Skjæveland, Ganesh Tambave, Kjetil Ullaland, Monika Varga-Kofarago, Lennart Volz, Boris Wagner and Shiming Yang. &amp;lt;b&amp;gt;Design Optimization of a Pixel Based Range Telescope for Proton Computed Tomography.&amp;lt;/b&amp;gt; &amp;lt;i&amp;gt;Submitted to Physica Medica Special Issue: Advances in Geant4 for medicine.&amp;lt;/i&amp;gt;&lt;br /&gt;
** Submitted manuscript: [[Media: Pettersen et al. - Design Optimization of a Pixel Based Range Telesco.pdf| PDF]]&lt;br /&gt;
&lt;br /&gt;
==== Under construction ====&lt;br /&gt;
* J. Sølie, H. E. S. Pettersen, I. Meric, O. H. Odland, H. Helstrup and D. Röhrich: &amp;lt;b&amp;gt;A comparison of longitudinal and lateral range for protons traversing complex media using GATE, MCNP6 and FLUKA Monte Carlo simulations&amp;lt;/b&amp;gt;. Submitted to Radiat. Phys. Chem. in conjunction with the [http://conferences.illinois.edu/irrma2017/ IRRMA X] conference.&lt;br /&gt;
** Preliminary manuscript: [[Media: 1708.00668.pdf |PDF]]&lt;br /&gt;
** arXiv link: [https://arxiv.org/abs/1708.00668  arXiv:1708.00668]&lt;br /&gt;
&lt;br /&gt;
== [[Meetings]] ==&lt;br /&gt;
Notes and slides from the project meetings&lt;br /&gt;
&lt;br /&gt;
== [[Workshops]] ==&lt;br /&gt;
Slides from the project [[Workshops | workshops]]&lt;br /&gt;
&lt;br /&gt;
== [[Workpackages]] ==&lt;br /&gt;
Sections for the different work packages&lt;br /&gt;
&lt;br /&gt;
== [[People]] ==&lt;br /&gt;
Contact info of involved people &lt;br /&gt;
&lt;br /&gt;
== [[Links]] ==&lt;br /&gt;
Link collection of topics regarding the project&lt;br /&gt;
&lt;br /&gt;
== Getting started ==&lt;br /&gt;
* Note: ASK is a placeholder that marks questions &lt;br /&gt;
* Note: Search function is not ideal. It doesn&#039;t find all occurences of the search term, e.g. aries finds libraries but not aries.bccs&lt;br /&gt;
&lt;br /&gt;
* Consult the [//meta.wikimedia.org/wiki/Help:Contents User&#039;s Guide] for information on using the wiki software.&lt;br /&gt;
* [//www.mediawiki.org/wiki/Manual:Configuration_settings Configuration settings list]&lt;br /&gt;
* [//www.mediawiki.org/wiki/Manual:FAQ MediaWiki FAQ]&lt;br /&gt;
* [https://lists.wikimedia.org/mailman/listinfo/mediawiki-announce MediaWiki release mailing list]&lt;/div&gt;</summary>
		<author><name>Hpe090</name></author>
	</entry>
	<entry>
		<id>https://pct.wiki.uib.no/index.php?title=Main_Page&amp;diff=522</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://pct.wiki.uib.no/index.php?title=Main_Page&amp;diff=522"/>
		<updated>2019-01-02T08:14:14Z</updated>

		<summary type="html">&lt;p&gt;Hpe090: /* Under construction */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Wiki for the proton CT project&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== [[Documentation]] ==&lt;br /&gt;
[[Documentation]] on how to install and use the involved software packages, the development workflow, etc.&lt;br /&gt;
&lt;br /&gt;
== [[Publications]] ==&lt;br /&gt;
List of publications from the project.&lt;br /&gt;
&lt;br /&gt;
==== Workpackage Reports ====&lt;br /&gt;
* [[Media:pCT-WP1-1-Rev2 design recommendations.pdf | pCT-WP1-01-Rev2 Detector design specifications]] (Rev2: Added carrier board thickness recommendations)&lt;br /&gt;
* [[:File:pCT-WP1-02-Rev3 (Radiation environment and electronics).pdf | pCT-WP1-02-Rev3 Radiation environment and placement of electronics]] (Rev2: Updated results and assumptions, Rev3: Updated with 1-10cm results) (Please feel free to contact [mailto:jars@hvl.no Jarle Rambo Sølie] if there are any questions regarding the contents of this document.&lt;br /&gt;
&lt;br /&gt;
==== Theses ====&lt;br /&gt;
* [http://bora.uib.no/bitstream/handle/1956/10412/135279255.pdf?sequence=1&amp;amp;isAllowed=y Kristian Austreim - MSc - 2015 - Proton computed tomography readout testing and detector design]&lt;br /&gt;
* [http://bora.uib.no/bitstream/handle/1956/16041/thesis_final.pdf?sequence=1&amp;amp;isAllowed=y Ola Grøttvik - MSc - 2017 - Design of High-Speed Digital Readout System for Use in Proton Computed Tomography]&lt;br /&gt;
* [http://bora.uib.no/bitstream/handle/1956/16758/PCT_readout_testing_and_detector_HSchaug.pdf?sequence=1&amp;amp;isAllowed=y Håkon Schaug - MSc - 2017 - Proton Beam Test Of A High Granularity Calorimeter For Proton Computed Tomography]&lt;br /&gt;
* [https://brage.bibsys.no/xmlui/bitstream/handle/11250/2434108/16246_FULLTEXT.pdf?sequence=1&amp;amp;isAllowed=y Even Hansen - MSc - 2017 - Charge Diffusion Modelling for a Monolithic Active Pixel Sensor Detector with Application to Proton CT]&lt;br /&gt;
* [[:File:A digital tracking calorimeter for proton computed tomography.pdf | Helge Pettersen - PhD - 2018 - A Digital Tracking Calorimeter for Proton Computed Tomography]]&lt;br /&gt;
* Simon Kristian Huiberts - MSc - 2018 - Characterization of the ALPIDE chip using He ions (Data from Australian Micro beam, cluster size characteristics).&lt;br /&gt;
* Villiar Nilsen Ekeland - MSc - 2018 - Characterization of the ALPIDE chip using protons (Data from Oslo beam test, cluster size and LET correlation with different bias voltages).&lt;br /&gt;
* Silje Grimstad - MSc - 2019 - ALPIDE Cluster simulations (Building database of cluster characteristics, simulation of clusters using said database. Position and cluster separation algorithms).&lt;br /&gt;
* Aleksei Kuleshov - MSc - 2019 - Proton CT monitoring and ALPIDE control (MQTT protocol server, System workflow, GUI implementation). &lt;br /&gt;
==== Journal Articles ====&lt;br /&gt;
* Pettersen, H.E.S., J. Alme, A. van den Brink, M. Chaar, D. Fehlker, I. Meric, O.H. Odland, et al. &amp;lt;b&amp;gt;Proton Tracking in a High-Granularity Digital Tracking Calorimeter for Proton CT Purposes&amp;lt;/b&amp;gt;.  Nuclear Instruments and Methods in Physics Research A 860C, 51–61. doi:10.1016/j.nima.2017.02.007. &lt;br /&gt;
** Published manuscript: [[Media: 1-s2.0-S0168900217301882-main.pdf | PDF]]&lt;br /&gt;
** Elsevier link: [http://www.sciencedirect.com/science/article/pii/S0168900217301882 doi:10.1016/j.nima.2017.02.007]&lt;br /&gt;
** arXiv link: [https://arxiv.org/abs/1611.02031 arXiv:1611.02031]&lt;br /&gt;
&lt;br /&gt;
* Pettersen, H.E.S., Chaar, M., Meric, I., Odland, O.H., Sølie, J., Röhrich, D. &amp;lt;b&amp;gt;Accuracy of parameterized proton range models; a comparison&amp;lt;/b&amp;gt;. Radiation Physics and Chemistry, 144 (C): 295-297 (2018). doi:10.1016/j.radphyschem.2017.08.02&lt;br /&gt;
** Published manuscript: [[Media: Comparison of different calculation methods of proton ranges.pdf | PDF]]&lt;br /&gt;
** Elsevier link: [http://www.sciencedirect.com/science/article/pii/S0969806X17303869?via%3Dihub 10.1016/j.radphyschem.2017.08.028]&lt;br /&gt;
** arXiv link: [https://arxiv.org/abs/1704.08854  arXiv:1704.08854]&lt;br /&gt;
&lt;br /&gt;
* Pettersen, H. E. S., and D. Röhrich. 2017. “Kreftbehandling Med Protonterapi Og Proton CT.” Fra Fysikkens Verden, December 2017.&lt;br /&gt;
** Published article: [[Media: FFV-proton-CT-ensidig.pdf | PDF]]&lt;br /&gt;
&lt;br /&gt;
==== In review ====&lt;br /&gt;
Pettersen, H.E.S., Meric, I., Odland, O.H., Shafiee, H., Sølie, J., Röhrich, D. &amp;lt;b&amp;gt;Proton Tracking Algorithm for Pixel Based Range Telescopes for Proton Computed Tomography&amp;lt;/b&amp;gt;.&lt;br /&gt;
* Revision submitted to Web of Conferences after the &amp;quot;Connecting the Dots&amp;quot; conference.&lt;br /&gt;
* Revised manuscript: [[Media: detector-proton-tracking.pdf | PDF]]&lt;br /&gt;
&lt;br /&gt;
Pettersen, Helge Egil Seime, Lennart Volz, Jarle Sølie, Dieter Rohrich, and Joao Seco. &amp;lt;b&amp;gt;A Linear Projection Model to Estimate a Proton’s Position in a Pencil Beam For Single Sided Proton Imaging,&amp;lt;/b&amp;gt;.&lt;br /&gt;
* Submitted to Physics in Medicine and Biology.&lt;br /&gt;
* Submitted manuscript: [[Media: Authors manuscript.pdf | PDF]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Pettersen, Helge Egil Seime, Johan Alme, Gergely Gabor Barnafoldi, Alba Garcıa-Santos, Ola Grøttvik, Håvard Helstrup, Kristin Fanebust Hetland, Ilker Meric, Odd Harald Odland, Gabor Papp, Thomas Peitzmann, Dieter Röhrich, Joao Seco, Hesam Shafiee, Eivind Vågslid Skjæveland, Ganesh Tambave, Kjetil Ullaland, Monika Varga-Kofarago, Lennart Volz, Boris Wagner and Shiming Yang. &amp;lt;b&amp;gt;Design Optimization of a Pixel Based Range Telescope for Proton Computed Tomography.&amp;lt;/b&amp;gt;&lt;br /&gt;
* Submitted to Physica Medica Special Issue: Advances in Geant4 for medicine.&lt;br /&gt;
* Submitted manuscript: [[Media: Pettersen et al. - Design Optimization of a Pixel Based Range Telesco.pdf| PDF]]&lt;br /&gt;
&lt;br /&gt;
==== Under construction ====&lt;br /&gt;
* J. Sølie, H. E. S. Pettersen, I. Meric, O. H. Odland, H. Helstrup and D. Röhrich: &amp;lt;b&amp;gt;A comparison of longitudinal and lateral range for protons traversing complex media using GATE, MCNP6 and FLUKA Monte Carlo simulations&amp;lt;/b&amp;gt;. Submitted to Radiat. Phys. Chem. in conjunction with the [http://conferences.illinois.edu/irrma2017/ IRRMA X] conference.&lt;br /&gt;
** Preliminary manuscript: [[Media: 1708.00668.pdf |PDF]]&lt;br /&gt;
** arXiv link: [https://arxiv.org/abs/1708.00668  arXiv:1708.00668]&lt;br /&gt;
&lt;br /&gt;
== [[Meetings]] ==&lt;br /&gt;
Notes and slides from the project meetings&lt;br /&gt;
&lt;br /&gt;
== [[Workshops]] ==&lt;br /&gt;
Slides from the project [[Workshops | workshops]]&lt;br /&gt;
&lt;br /&gt;
== [[Workpackages]] ==&lt;br /&gt;
Sections for the different work packages&lt;br /&gt;
&lt;br /&gt;
== [[People]] ==&lt;br /&gt;
Contact info of involved people &lt;br /&gt;
&lt;br /&gt;
== [[Links]] ==&lt;br /&gt;
Link collection of topics regarding the project&lt;br /&gt;
&lt;br /&gt;
== Getting started ==&lt;br /&gt;
* Note: ASK is a placeholder that marks questions &lt;br /&gt;
* Note: Search function is not ideal. It doesn&#039;t find all occurences of the search term, e.g. aries finds libraries but not aries.bccs&lt;br /&gt;
&lt;br /&gt;
* Consult the [//meta.wikimedia.org/wiki/Help:Contents User&#039;s Guide] for information on using the wiki software.&lt;br /&gt;
* [//www.mediawiki.org/wiki/Manual:Configuration_settings Configuration settings list]&lt;br /&gt;
* [//www.mediawiki.org/wiki/Manual:FAQ MediaWiki FAQ]&lt;br /&gt;
* [https://lists.wikimedia.org/mailman/listinfo/mediawiki-announce MediaWiki release mailing list]&lt;/div&gt;</summary>
		<author><name>Hpe090</name></author>
	</entry>
	<entry>
		<id>https://pct.wiki.uib.no/index.php?title=Main_Page&amp;diff=521</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://pct.wiki.uib.no/index.php?title=Main_Page&amp;diff=521"/>
		<updated>2019-01-02T08:13:59Z</updated>

		<summary type="html">&lt;p&gt;Hpe090: /* In review */ Added article&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Wiki for the proton CT project&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== [[Documentation]] ==&lt;br /&gt;
[[Documentation]] on how to install and use the involved software packages, the development workflow, etc.&lt;br /&gt;
&lt;br /&gt;
== [[Publications]] ==&lt;br /&gt;
List of publications from the project.&lt;br /&gt;
&lt;br /&gt;
==== Workpackage Reports ====&lt;br /&gt;
* [[Media:pCT-WP1-1-Rev2 design recommendations.pdf | pCT-WP1-01-Rev2 Detector design specifications]] (Rev2: Added carrier board thickness recommendations)&lt;br /&gt;
* [[:File:pCT-WP1-02-Rev3 (Radiation environment and electronics).pdf | pCT-WP1-02-Rev3 Radiation environment and placement of electronics]] (Rev2: Updated results and assumptions, Rev3: Updated with 1-10cm results) (Please feel free to contact [mailto:jars@hvl.no Jarle Rambo Sølie] if there are any questions regarding the contents of this document.&lt;br /&gt;
&lt;br /&gt;
==== Theses ====&lt;br /&gt;
* [http://bora.uib.no/bitstream/handle/1956/10412/135279255.pdf?sequence=1&amp;amp;isAllowed=y Kristian Austreim - MSc - 2015 - Proton computed tomography readout testing and detector design]&lt;br /&gt;
* [http://bora.uib.no/bitstream/handle/1956/16041/thesis_final.pdf?sequence=1&amp;amp;isAllowed=y Ola Grøttvik - MSc - 2017 - Design of High-Speed Digital Readout System for Use in Proton Computed Tomography]&lt;br /&gt;
* [http://bora.uib.no/bitstream/handle/1956/16758/PCT_readout_testing_and_detector_HSchaug.pdf?sequence=1&amp;amp;isAllowed=y Håkon Schaug - MSc - 2017 - Proton Beam Test Of A High Granularity Calorimeter For Proton Computed Tomography]&lt;br /&gt;
* [https://brage.bibsys.no/xmlui/bitstream/handle/11250/2434108/16246_FULLTEXT.pdf?sequence=1&amp;amp;isAllowed=y Even Hansen - MSc - 2017 - Charge Diffusion Modelling for a Monolithic Active Pixel Sensor Detector with Application to Proton CT]&lt;br /&gt;
* [[:File:A digital tracking calorimeter for proton computed tomography.pdf | Helge Pettersen - PhD - 2018 - A Digital Tracking Calorimeter for Proton Computed Tomography]]&lt;br /&gt;
* Simon Kristian Huiberts - MSc - 2018 - Characterization of the ALPIDE chip using He ions (Data from Australian Micro beam, cluster size characteristics).&lt;br /&gt;
* Villiar Nilsen Ekeland - MSc - 2018 - Characterization of the ALPIDE chip using protons (Data from Oslo beam test, cluster size and LET correlation with different bias voltages).&lt;br /&gt;
* Silje Grimstad - MSc - 2019 - ALPIDE Cluster simulations (Building database of cluster characteristics, simulation of clusters using said database. Position and cluster separation algorithms).&lt;br /&gt;
* Aleksei Kuleshov - MSc - 2019 - Proton CT monitoring and ALPIDE control (MQTT protocol server, System workflow, GUI implementation). &lt;br /&gt;
==== Journal Articles ====&lt;br /&gt;
* Pettersen, H.E.S., J. Alme, A. van den Brink, M. Chaar, D. Fehlker, I. Meric, O.H. Odland, et al. &amp;lt;b&amp;gt;Proton Tracking in a High-Granularity Digital Tracking Calorimeter for Proton CT Purposes&amp;lt;/b&amp;gt;.  Nuclear Instruments and Methods in Physics Research A 860C, 51–61. doi:10.1016/j.nima.2017.02.007. &lt;br /&gt;
** Published manuscript: [[Media: 1-s2.0-S0168900217301882-main.pdf | PDF]]&lt;br /&gt;
** Elsevier link: [http://www.sciencedirect.com/science/article/pii/S0168900217301882 doi:10.1016/j.nima.2017.02.007]&lt;br /&gt;
** arXiv link: [https://arxiv.org/abs/1611.02031 arXiv:1611.02031]&lt;br /&gt;
&lt;br /&gt;
* Pettersen, H.E.S., Chaar, M., Meric, I., Odland, O.H., Sølie, J., Röhrich, D. &amp;lt;b&amp;gt;Accuracy of parameterized proton range models; a comparison&amp;lt;/b&amp;gt;. Radiation Physics and Chemistry, 144 (C): 295-297 (2018). doi:10.1016/j.radphyschem.2017.08.02&lt;br /&gt;
** Published manuscript: [[Media: Comparison of different calculation methods of proton ranges.pdf | PDF]]&lt;br /&gt;
** Elsevier link: [http://www.sciencedirect.com/science/article/pii/S0969806X17303869?via%3Dihub 10.1016/j.radphyschem.2017.08.028]&lt;br /&gt;
** arXiv link: [https://arxiv.org/abs/1704.08854  arXiv:1704.08854]&lt;br /&gt;
&lt;br /&gt;
* Pettersen, H. E. S., and D. Röhrich. 2017. “Kreftbehandling Med Protonterapi Og Proton CT.” Fra Fysikkens Verden, December 2017.&lt;br /&gt;
** Published article: [[Media: FFV-proton-CT-ensidig.pdf | PDF]]&lt;br /&gt;
&lt;br /&gt;
==== In review ====&lt;br /&gt;
Pettersen, H.E.S., Meric, I., Odland, O.H., Shafiee, H., Sølie, J., Röhrich, D. &amp;lt;b&amp;gt;Proton Tracking Algorithm for Pixel Based Range Telescopes for Proton Computed Tomography&amp;lt;/b&amp;gt;.&lt;br /&gt;
* Revision submitted to Web of Conferences after the &amp;quot;Connecting the Dots&amp;quot; conference.&lt;br /&gt;
* Revised manuscript: [[Media: detector-proton-tracking.pdf | PDF]]&lt;br /&gt;
&lt;br /&gt;
Pettersen, Helge Egil Seime, Lennart Volz, Jarle Sølie, Dieter Rohrich, and Joao Seco. &amp;lt;b&amp;gt;A Linear Projection Model to Estimate a Proton’s Position in a Pencil Beam For Single Sided Proton Imaging,&amp;lt;/b&amp;gt;.&lt;br /&gt;
* Submitted to Physics in Medicine and Biology.&lt;br /&gt;
* Submitted manuscript: [[Media: Authors manuscript.pdf | PDF]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Pettersen, Helge Egil Seime, Johan Alme, Gergely Gabor Barnafoldi, Alba Garcıa-Santos, Ola Grøttvik, Håvard Helstrup, Kristin Fanebust Hetland, Ilker Meric, Odd Harald Odland, Gabor Papp, Thomas Peitzmann, Dieter Röhrich, Joao Seco, Hesam Shafiee, Eivind Vågslid Skjæveland, Ganesh Tambave, Kjetil Ullaland, Monika Varga-Kofarago, Lennart Volz, Boris Wagner and Shiming Yang. &amp;lt;b&amp;gt;Design Optimization of a Pixel Based Range Telescope for Proton Computed Tomography.&amp;lt;/b&amp;gt;&lt;br /&gt;
* Submitted to Physica Medica Special Issue: Advances in Geant4 for medicine.&lt;br /&gt;
* Submitted manuscript: [[Media: Pettersen et al. - Design Optimization of a Pixel Based Range Telesco.pdf| PDF]]&lt;br /&gt;
&lt;br /&gt;
==== Under construction ====&lt;br /&gt;
* H. E. S. Pettersen, J. Sølie, I. Meric, D. Röhrich, O. H. Odland, etc.: &amp;lt;b&amp;gt;Design optimization of a digital tracking calorimeter&amp;lt;/b&amp;gt;&lt;br /&gt;
** Preliminary manuscript: [[Media: Design optimization of a digital tracking calorimeter.pdf | PDF]]&lt;br /&gt;
** This paper might be generalized somewhat for publication&lt;br /&gt;
&lt;br /&gt;
* J. Sølie, H. E. S. Pettersen, I. Meric, O. H. Odland, H. Helstrup and D. Röhrich: &amp;lt;b&amp;gt;A comparison of longitudinal and lateral range for protons traversing complex media using GATE, MCNP6 and FLUKA Monte Carlo simulations&amp;lt;/b&amp;gt;. Submitted to Radiat. Phys. Chem. in conjunction with the [http://conferences.illinois.edu/irrma2017/ IRRMA X] conference.&lt;br /&gt;
** Preliminary manuscript: [[Media: 1708.00668.pdf |PDF]]&lt;br /&gt;
** arXiv link: [https://arxiv.org/abs/1708.00668  arXiv:1708.00668]&lt;br /&gt;
&lt;br /&gt;
== [[Meetings]] ==&lt;br /&gt;
Notes and slides from the project meetings&lt;br /&gt;
&lt;br /&gt;
== [[Workshops]] ==&lt;br /&gt;
Slides from the project [[Workshops | workshops]]&lt;br /&gt;
&lt;br /&gt;
== [[Workpackages]] ==&lt;br /&gt;
Sections for the different work packages&lt;br /&gt;
&lt;br /&gt;
== [[People]] ==&lt;br /&gt;
Contact info of involved people &lt;br /&gt;
&lt;br /&gt;
== [[Links]] ==&lt;br /&gt;
Link collection of topics regarding the project&lt;br /&gt;
&lt;br /&gt;
== Getting started ==&lt;br /&gt;
* Note: ASK is a placeholder that marks questions &lt;br /&gt;
* Note: Search function is not ideal. It doesn&#039;t find all occurences of the search term, e.g. aries finds libraries but not aries.bccs&lt;br /&gt;
&lt;br /&gt;
* Consult the [//meta.wikimedia.org/wiki/Help:Contents User&#039;s Guide] for information on using the wiki software.&lt;br /&gt;
* [//www.mediawiki.org/wiki/Manual:Configuration_settings Configuration settings list]&lt;br /&gt;
* [//www.mediawiki.org/wiki/Manual:FAQ MediaWiki FAQ]&lt;br /&gt;
* [https://lists.wikimedia.org/mailman/listinfo/mediawiki-announce MediaWiki release mailing list]&lt;/div&gt;</summary>
		<author><name>Hpe090</name></author>
	</entry>
	<entry>
		<id>https://pct.wiki.uib.no/index.php?title=File:Pettersen_et_al._-_Design_Optimization_of_a_Pixel_Based_Range_Telesco.pdf&amp;diff=520</id>
		<title>File:Pettersen et al. - Design Optimization of a Pixel Based Range Telesco.pdf</title>
		<link rel="alternate" type="text/html" href="https://pct.wiki.uib.no/index.php?title=File:Pettersen_et_al._-_Design_Optimization_of_a_Pixel_Based_Range_Telesco.pdf&amp;diff=520"/>
		<updated>2019-01-02T08:12:24Z</updated>

		<summary type="html">&lt;p&gt;Hpe090: File uploaded with MsUpload&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;File uploaded with MsUpload&lt;/div&gt;</summary>
		<author><name>Hpe090</name></author>
	</entry>
	<entry>
		<id>https://pct.wiki.uib.no/index.php?title=Main_Page&amp;diff=519</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://pct.wiki.uib.no/index.php?title=Main_Page&amp;diff=519"/>
		<updated>2018-12-06T15:33:07Z</updated>

		<summary type="html">&lt;p&gt;Hpe090: /* Journal Articles */ Added Fra Fysikkens Verden&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Wiki for the proton CT project&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== [[Documentation]] ==&lt;br /&gt;
[[Documentation]] on how to install and use the involved software packages, the development workflow, etc.&lt;br /&gt;
&lt;br /&gt;
== [[Publications]] ==&lt;br /&gt;
List of publications from the project.&lt;br /&gt;
&lt;br /&gt;
==== Workpackage Reports ====&lt;br /&gt;
* [[Media:pCT-WP1-1-Rev2 design recommendations.pdf | pCT-WP1-01-Rev2 Detector design specifications]] (Rev2: Added carrier board thickness recommendations)&lt;br /&gt;
* [[:File:pCT-WP1-02-Rev3 (Radiation environment and electronics).pdf | pCT-WP1-02-Rev3 Radiation environment and placement of electronics]] (Rev2: Updated results and assumptions, Rev3: Updated with 1-10cm results) (Please feel free to contact [mailto:jars@hvl.no Jarle Rambo Sølie] if there are any questions regarding the contents of this document.&lt;br /&gt;
&lt;br /&gt;
==== Theses ====&lt;br /&gt;
* [http://bora.uib.no/bitstream/handle/1956/10412/135279255.pdf?sequence=1&amp;amp;isAllowed=y Kristian Austreim - MSc - 2015 - Proton computed tomography readout testing and detector design]&lt;br /&gt;
* [http://bora.uib.no/bitstream/handle/1956/16041/thesis_final.pdf?sequence=1&amp;amp;isAllowed=y Ola Grøttvik - MSc - 2017 - Design of High-Speed Digital Readout System for Use in Proton Computed Tomography]&lt;br /&gt;
* [http://bora.uib.no/bitstream/handle/1956/16758/PCT_readout_testing_and_detector_HSchaug.pdf?sequence=1&amp;amp;isAllowed=y Håkon Schaug - MSc - 2017 - Proton Beam Test Of A High Granularity Calorimeter For Proton Computed Tomography]&lt;br /&gt;
* [https://brage.bibsys.no/xmlui/bitstream/handle/11250/2434108/16246_FULLTEXT.pdf?sequence=1&amp;amp;isAllowed=y Even Hansen - MSc - 2017 - Charge Diffusion Modelling for a Monolithic Active Pixel Sensor Detector with Application to Proton CT]&lt;br /&gt;
* [[:File:A digital tracking calorimeter for proton computed tomography.pdf | Helge Pettersen - PhD - 2018 - A Digital Tracking Calorimeter for Proton Computed Tomography]]&lt;br /&gt;
* Simon Kristian Huiberts - MSc - 2018 - Characterization of the ALPIDE chip using He ions (Data from Australian Micro beam, cluster size characteristics).&lt;br /&gt;
* Villiar Nilsen Ekeland - MSc - 2018 - Characterization of the ALPIDE chip using protons (Data from Oslo beam test, cluster size and LET correlation with different bias voltages).&lt;br /&gt;
* Silje Grimstad - MSc - 2019 - ALPIDE Cluster simulations (Building database of cluster characteristics, simulation of clusters using said database. Position and cluster separation algorithms).&lt;br /&gt;
* Aleksei Kuleshov - MSc - 2019 - Proton CT monitoring and ALPIDE control (MQTT protocol server, System workflow, GUI implementation). &lt;br /&gt;
==== Journal Articles ====&lt;br /&gt;
* Pettersen, H.E.S., J. Alme, A. van den Brink, M. Chaar, D. Fehlker, I. Meric, O.H. Odland, et al. &amp;lt;b&amp;gt;Proton Tracking in a High-Granularity Digital Tracking Calorimeter for Proton CT Purposes&amp;lt;/b&amp;gt;.  Nuclear Instruments and Methods in Physics Research A 860C, 51–61. doi:10.1016/j.nima.2017.02.007. &lt;br /&gt;
** Published manuscript: [[Media: 1-s2.0-S0168900217301882-main.pdf | PDF]]&lt;br /&gt;
** Elsevier link: [http://www.sciencedirect.com/science/article/pii/S0168900217301882 doi:10.1016/j.nima.2017.02.007]&lt;br /&gt;
** arXiv link: [https://arxiv.org/abs/1611.02031 arXiv:1611.02031]&lt;br /&gt;
&lt;br /&gt;
* Pettersen, H.E.S., Chaar, M., Meric, I., Odland, O.H., Sølie, J., Röhrich, D. &amp;lt;b&amp;gt;Accuracy of parameterized proton range models; a comparison&amp;lt;/b&amp;gt;. Radiation Physics and Chemistry, 144 (C): 295-297 (2018). doi:10.1016/j.radphyschem.2017.08.02&lt;br /&gt;
** Published manuscript: [[Media: Comparison of different calculation methods of proton ranges.pdf | PDF]]&lt;br /&gt;
** Elsevier link: [http://www.sciencedirect.com/science/article/pii/S0969806X17303869?via%3Dihub 10.1016/j.radphyschem.2017.08.028]&lt;br /&gt;
** arXiv link: [https://arxiv.org/abs/1704.08854  arXiv:1704.08854]&lt;br /&gt;
&lt;br /&gt;
* Pettersen, H. E. S., and D. Röhrich. 2017. “Kreftbehandling Med Protonterapi Og Proton CT.” Fra Fysikkens Verden, December 2017.&lt;br /&gt;
** Published article: [[Media: FFV-proton-CT-ensidig.pdf | PDF]]&lt;br /&gt;
&lt;br /&gt;
==== In review ====&lt;br /&gt;
Pettersen, H.E.S., Meric, I., Odland, O.H., Shafiee, H., Sølie, J., Röhrich, D. &amp;lt;b&amp;gt;Proton Tracking Algorithm for Pixel Based Range Telescopes for Proton Computed Tomography&amp;lt;/b&amp;gt;. Submitted to Web of Conferences after the &amp;quot;Connecting the Dots&amp;quot; conference.&lt;br /&gt;
** Proffered manuscript: [[Media: detector-proton-tracking.pdf | PDF]]&lt;br /&gt;
&lt;br /&gt;
Pettersen, Helge Egil Seime, Lennart Volz, Jarle Sølie, Dieter Rohrich, and Joao Seco. &amp;lt;b&amp;gt;A Linear Projection Model to Estimate a Proton’s Position in a Pencil Beam For Single Sided Proton Imaging,&amp;lt;/b&amp;gt;. Submitted to Physics in Medicine and Biology.&lt;br /&gt;
** Proffered manuscript: [[Media: Authors manuscript.pdf | PDF]]&lt;br /&gt;
&lt;br /&gt;
==== Under construction ====&lt;br /&gt;
* H. E. S. Pettersen, J. Sølie, I. Meric, D. Röhrich, O. H. Odland, etc.: &amp;lt;b&amp;gt;Design optimization of a digital tracking calorimeter&amp;lt;/b&amp;gt;&lt;br /&gt;
** Preliminary manuscript: [[Media: Design optimization of a digital tracking calorimeter.pdf | PDF]]&lt;br /&gt;
** This paper might be generalized somewhat for publication&lt;br /&gt;
&lt;br /&gt;
* J. Sølie, H. E. S. Pettersen, I. Meric, O. H. Odland, H. Helstrup and D. Röhrich: &amp;lt;b&amp;gt;A comparison of longitudinal and lateral range for protons traversing complex media using GATE, MCNP6 and FLUKA Monte Carlo simulations&amp;lt;/b&amp;gt;. Submitted to Radiat. Phys. Chem. in conjunction with the [http://conferences.illinois.edu/irrma2017/ IRRMA X] conference.&lt;br /&gt;
** Preliminary manuscript: [[Media: 1708.00668.pdf |PDF]]&lt;br /&gt;
** arXiv link: [https://arxiv.org/abs/1708.00668  arXiv:1708.00668]&lt;br /&gt;
&lt;br /&gt;
== [[Meetings]] ==&lt;br /&gt;
Notes and slides from the project meetings&lt;br /&gt;
&lt;br /&gt;
== [[Workshops]] ==&lt;br /&gt;
Slides from the project [[Workshops | workshops]]&lt;br /&gt;
&lt;br /&gt;
== [[Workpackages]] ==&lt;br /&gt;
Sections for the different work packages&lt;br /&gt;
&lt;br /&gt;
== [[People]] ==&lt;br /&gt;
Contact info of involved people &lt;br /&gt;
&lt;br /&gt;
== [[Links]] ==&lt;br /&gt;
Link collection of topics regarding the project&lt;br /&gt;
&lt;br /&gt;
== Getting started ==&lt;br /&gt;
* Note: ASK is a placeholder that marks questions &lt;br /&gt;
* Note: Search function is not ideal. It doesn&#039;t find all occurences of the search term, e.g. aries finds libraries but not aries.bccs&lt;br /&gt;
&lt;br /&gt;
* Consult the [//meta.wikimedia.org/wiki/Help:Contents User&#039;s Guide] for information on using the wiki software.&lt;br /&gt;
* [//www.mediawiki.org/wiki/Manual:Configuration_settings Configuration settings list]&lt;br /&gt;
* [//www.mediawiki.org/wiki/Manual:FAQ MediaWiki FAQ]&lt;br /&gt;
* [https://lists.wikimedia.org/mailman/listinfo/mediawiki-announce MediaWiki release mailing list]&lt;/div&gt;</summary>
		<author><name>Hpe090</name></author>
	</entry>
	<entry>
		<id>https://pct.wiki.uib.no/index.php?title=File:FFV-proton-CT-ensidig.pdf&amp;diff=518</id>
		<title>File:FFV-proton-CT-ensidig.pdf</title>
		<link rel="alternate" type="text/html" href="https://pct.wiki.uib.no/index.php?title=File:FFV-proton-CT-ensidig.pdf&amp;diff=518"/>
		<updated>2018-12-06T15:32:46Z</updated>

		<summary type="html">&lt;p&gt;Hpe090: File uploaded with MsUpload&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;File uploaded with MsUpload&lt;/div&gt;</summary>
		<author><name>Hpe090</name></author>
	</entry>
	<entry>
		<id>https://pct.wiki.uib.no/index.php?title=Main_Page&amp;diff=517</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://pct.wiki.uib.no/index.php?title=Main_Page&amp;diff=517"/>
		<updated>2018-12-06T15:32:04Z</updated>

		<summary type="html">&lt;p&gt;Hpe090: Added submitted publication&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Wiki for the proton CT project&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== [[Documentation]] ==&lt;br /&gt;
[[Documentation]] on how to install and use the involved software packages, the development workflow, etc.&lt;br /&gt;
&lt;br /&gt;
== [[Publications]] ==&lt;br /&gt;
List of publications from the project.&lt;br /&gt;
&lt;br /&gt;
==== Workpackage Reports ====&lt;br /&gt;
* [[Media:pCT-WP1-1-Rev2 design recommendations.pdf | pCT-WP1-01-Rev2 Detector design specifications]] (Rev2: Added carrier board thickness recommendations)&lt;br /&gt;
* [[:File:pCT-WP1-02-Rev3 (Radiation environment and electronics).pdf | pCT-WP1-02-Rev3 Radiation environment and placement of electronics]] (Rev2: Updated results and assumptions, Rev3: Updated with 1-10cm results) (Please feel free to contact [mailto:jars@hvl.no Jarle Rambo Sølie] if there are any questions regarding the contents of this document.&lt;br /&gt;
&lt;br /&gt;
==== Theses ====&lt;br /&gt;
* [http://bora.uib.no/bitstream/handle/1956/10412/135279255.pdf?sequence=1&amp;amp;isAllowed=y Kristian Austreim - MSc - 2015 - Proton computed tomography readout testing and detector design]&lt;br /&gt;
* [http://bora.uib.no/bitstream/handle/1956/16041/thesis_final.pdf?sequence=1&amp;amp;isAllowed=y Ola Grøttvik - MSc - 2017 - Design of High-Speed Digital Readout System for Use in Proton Computed Tomography]&lt;br /&gt;
* [http://bora.uib.no/bitstream/handle/1956/16758/PCT_readout_testing_and_detector_HSchaug.pdf?sequence=1&amp;amp;isAllowed=y Håkon Schaug - MSc - 2017 - Proton Beam Test Of A High Granularity Calorimeter For Proton Computed Tomography]&lt;br /&gt;
* [https://brage.bibsys.no/xmlui/bitstream/handle/11250/2434108/16246_FULLTEXT.pdf?sequence=1&amp;amp;isAllowed=y Even Hansen - MSc - 2017 - Charge Diffusion Modelling for a Monolithic Active Pixel Sensor Detector with Application to Proton CT]&lt;br /&gt;
* [[:File:A digital tracking calorimeter for proton computed tomography.pdf | Helge Pettersen - PhD - 2018 - A Digital Tracking Calorimeter for Proton Computed Tomography]]&lt;br /&gt;
* Simon Kristian Huiberts - MSc - 2018 - Characterization of the ALPIDE chip using He ions (Data from Australian Micro beam, cluster size characteristics).&lt;br /&gt;
* Villiar Nilsen Ekeland - MSc - 2018 - Characterization of the ALPIDE chip using protons (Data from Oslo beam test, cluster size and LET correlation with different bias voltages).&lt;br /&gt;
* Silje Grimstad - MSc - 2019 - ALPIDE Cluster simulations (Building database of cluster characteristics, simulation of clusters using said database. Position and cluster separation algorithms).&lt;br /&gt;
* Aleksei Kuleshov - MSc - 2019 - Proton CT monitoring and ALPIDE control (MQTT protocol server, System workflow, GUI implementation). &lt;br /&gt;
==== Journal Articles ====&lt;br /&gt;
* Pettersen, H.E.S., J. Alme, A. van den Brink, M. Chaar, D. Fehlker, I. Meric, O.H. Odland, et al. &amp;lt;b&amp;gt;Proton Tracking in a High-Granularity Digital Tracking Calorimeter for Proton CT Purposes&amp;lt;/b&amp;gt;.  Nuclear Instruments and Methods in Physics Research A 860C, 51–61. doi:10.1016/j.nima.2017.02.007. &lt;br /&gt;
** Published manuscript: [[Media: 1-s2.0-S0168900217301882-main.pdf | PDF]]&lt;br /&gt;
** Elsevier link: [http://www.sciencedirect.com/science/article/pii/S0168900217301882 doi:10.1016/j.nima.2017.02.007]&lt;br /&gt;
** arXiv link: [https://arxiv.org/abs/1611.02031 arXiv:1611.02031]&lt;br /&gt;
&lt;br /&gt;
* Pettersen, H.E.S., Chaar, M., Meric, I., Odland, O.H., Sølie, J., Röhrich, D. &amp;lt;b&amp;gt;Accuracy of parameterized proton range models; a comparison&amp;lt;/b&amp;gt;. Radiation Physics and Chemistry, 144 (C): 295-297 (2018). doi:10.1016/j.radphyschem.2017.08.02&lt;br /&gt;
** Published manuscript: [[Media: Comparison of different calculation methods of proton ranges.pdf | PDF]]&lt;br /&gt;
** Elsevier link: [http://www.sciencedirect.com/science/article/pii/S0969806X17303869?via%3Dihub 10.1016/j.radphyschem.2017.08.028]&lt;br /&gt;
** arXiv link: [https://arxiv.org/abs/1704.08854  arXiv:1704.08854]&lt;br /&gt;
&lt;br /&gt;
==== In review ====&lt;br /&gt;
Pettersen, H.E.S., Meric, I., Odland, O.H., Shafiee, H., Sølie, J., Röhrich, D. &amp;lt;b&amp;gt;Proton Tracking Algorithm for Pixel Based Range Telescopes for Proton Computed Tomography&amp;lt;/b&amp;gt;. Submitted to Web of Conferences after the &amp;quot;Connecting the Dots&amp;quot; conference.&lt;br /&gt;
** Proffered manuscript: [[Media: detector-proton-tracking.pdf | PDF]]&lt;br /&gt;
&lt;br /&gt;
Pettersen, Helge Egil Seime, Lennart Volz, Jarle Sølie, Dieter Rohrich, and Joao Seco. &amp;lt;b&amp;gt;A Linear Projection Model to Estimate a Proton’s Position in a Pencil Beam For Single Sided Proton Imaging,&amp;lt;/b&amp;gt;. Submitted to Physics in Medicine and Biology.&lt;br /&gt;
** Proffered manuscript: [[Media: Authors manuscript.pdf | PDF]]&lt;br /&gt;
&lt;br /&gt;
==== Under construction ====&lt;br /&gt;
* H. E. S. Pettersen, J. Sølie, I. Meric, D. Röhrich, O. H. Odland, etc.: &amp;lt;b&amp;gt;Design optimization of a digital tracking calorimeter&amp;lt;/b&amp;gt;&lt;br /&gt;
** Preliminary manuscript: [[Media: Design optimization of a digital tracking calorimeter.pdf | PDF]]&lt;br /&gt;
** This paper might be generalized somewhat for publication&lt;br /&gt;
&lt;br /&gt;
* J. Sølie, H. E. S. Pettersen, I. Meric, O. H. Odland, H. Helstrup and D. Röhrich: &amp;lt;b&amp;gt;A comparison of longitudinal and lateral range for protons traversing complex media using GATE, MCNP6 and FLUKA Monte Carlo simulations&amp;lt;/b&amp;gt;. Submitted to Radiat. Phys. Chem. in conjunction with the [http://conferences.illinois.edu/irrma2017/ IRRMA X] conference.&lt;br /&gt;
** Preliminary manuscript: [[Media: 1708.00668.pdf |PDF]]&lt;br /&gt;
** arXiv link: [https://arxiv.org/abs/1708.00668  arXiv:1708.00668]&lt;br /&gt;
&lt;br /&gt;
== [[Meetings]] ==&lt;br /&gt;
Notes and slides from the project meetings&lt;br /&gt;
&lt;br /&gt;
== [[Workshops]] ==&lt;br /&gt;
Slides from the project [[Workshops | workshops]]&lt;br /&gt;
&lt;br /&gt;
== [[Workpackages]] ==&lt;br /&gt;
Sections for the different work packages&lt;br /&gt;
&lt;br /&gt;
== [[People]] ==&lt;br /&gt;
Contact info of involved people &lt;br /&gt;
&lt;br /&gt;
== [[Links]] ==&lt;br /&gt;
Link collection of topics regarding the project&lt;br /&gt;
&lt;br /&gt;
== Getting started ==&lt;br /&gt;
* Note: ASK is a placeholder that marks questions &lt;br /&gt;
* Note: Search function is not ideal. It doesn&#039;t find all occurences of the search term, e.g. aries finds libraries but not aries.bccs&lt;br /&gt;
&lt;br /&gt;
* Consult the [//meta.wikimedia.org/wiki/Help:Contents User&#039;s Guide] for information on using the wiki software.&lt;br /&gt;
* [//www.mediawiki.org/wiki/Manual:Configuration_settings Configuration settings list]&lt;br /&gt;
* [//www.mediawiki.org/wiki/Manual:FAQ MediaWiki FAQ]&lt;br /&gt;
* [https://lists.wikimedia.org/mailman/listinfo/mediawiki-announce MediaWiki release mailing list]&lt;/div&gt;</summary>
		<author><name>Hpe090</name></author>
	</entry>
	<entry>
		<id>https://pct.wiki.uib.no/index.php?title=File:Authors_manuscript.pdf&amp;diff=516</id>
		<title>File:Authors manuscript.pdf</title>
		<link rel="alternate" type="text/html" href="https://pct.wiki.uib.no/index.php?title=File:Authors_manuscript.pdf&amp;diff=516"/>
		<updated>2018-12-06T15:31:27Z</updated>

		<summary type="html">&lt;p&gt;Hpe090: File uploaded with MsUpload&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;File uploaded with MsUpload&lt;/div&gt;</summary>
		<author><name>Hpe090</name></author>
	</entry>
	<entry>
		<id>https://pct.wiki.uib.no/index.php?title=Main_Page&amp;diff=512</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://pct.wiki.uib.no/index.php?title=Main_Page&amp;diff=512"/>
		<updated>2018-08-01T08:39:00Z</updated>

		<summary type="html">&lt;p&gt;Hpe090: Added WoC paper&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Wiki for the proton CT project&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== [[Documentation]] ==&lt;br /&gt;
[[Documentation]] on how to install and use the involved software packages, the development workflow, etc.&lt;br /&gt;
&lt;br /&gt;
== [[Publications]] ==&lt;br /&gt;
List of publications from the project.&lt;br /&gt;
&lt;br /&gt;
==== Workpackage Reports ====&lt;br /&gt;
* [[Media:pCT-WP1-1-Rev2 design recommendations.pdf | pCT-WP1-01-Rev2 Detector design specifications]] (Rev2: Added carrier board thickness recommendations)&lt;br /&gt;
* [[:File:pCT-WP1-02-Rev3 (Radiation environment and electronics).pdf | pCT-WP1-02-Rev3 Radiation environment and placement of electronics]] (Rev2: Updated results and assumptions, Rev3: Updated with 1-10cm results) (Please feel free to contact [mailto:jars@hvl.no Jarle Rambo Sølie] if there are any questions regarding the contents of this document.&lt;br /&gt;
&lt;br /&gt;
==== Theses ====&lt;br /&gt;
* [http://bora.uib.no/bitstream/handle/1956/10412/135279255.pdf?sequence=1&amp;amp;isAllowed=y Kristian Austreim - MSc - 2015 - Proton computed tomography readout testing and detector design]&lt;br /&gt;
* [http://bora.uib.no/bitstream/handle/1956/16041/thesis_final.pdf?sequence=1&amp;amp;isAllowed=y Ola Grøttvik - MSc - 2017 - Design of High-Speed Digital Readout System for Use in Proton Computed Tomography]&lt;br /&gt;
* [http://bora.uib.no/bitstream/handle/1956/16758/PCT_readout_testing_and_detector_HSchaug.pdf?sequence=1&amp;amp;isAllowed=y Håkon Schaug - MSc - 2017 - Proton Beam Test Of A High Granularity Calorimeter For Proton Computed Tomography]&lt;br /&gt;
* [https://brage.bibsys.no/xmlui/bitstream/handle/11250/2434108/16246_FULLTEXT.pdf?sequence=1&amp;amp;isAllowed=y Even Hansen - MSc - 2017 - Charge Diffusion Modelling for a Monolithic Active Pixel Sensor Detector with Application to Proton CT]&lt;br /&gt;
* [[:File:A digital tracking calorimeter for proton computed tomography.pdf | Helge Pettersen - PhD - 2018 - A Digital Tracking Calorimeter for Proton Computed Tomography]]&lt;br /&gt;
&lt;br /&gt;
==== Journal Articles ====&lt;br /&gt;
* Pettersen, H.E.S., J. Alme, A. van den Brink, M. Chaar, D. Fehlker, I. Meric, O.H. Odland, et al. &amp;lt;b&amp;gt;Proton Tracking in a High-Granularity Digital Tracking Calorimeter for Proton CT Purposes&amp;lt;/b&amp;gt;.  Nuclear Instruments and Methods in Physics Research A 860C, 51–61. doi:10.1016/j.nima.2017.02.007. &lt;br /&gt;
** Published manuscript: [[Media: 1-s2.0-S0168900217301882-main.pdf | PDF]]&lt;br /&gt;
** Elsevier link: [http://www.sciencedirect.com/science/article/pii/S0168900217301882 doi:10.1016/j.nima.2017.02.007]&lt;br /&gt;
** arXiv link: [https://arxiv.org/abs/1611.02031 arXiv:1611.02031]&lt;br /&gt;
&lt;br /&gt;
* Pettersen, H.E.S., Chaar, M., Meric, I., Odland, O.H., Sølie, J., Röhrich, D. &amp;lt;b&amp;gt;Accuracy of parameterized proton range models; a comparison&amp;lt;/b&amp;gt;. Radiation Physics and Chemistry, 144 (C): 295-297 (2018). doi:10.1016/j.radphyschem.2017.08.02&lt;br /&gt;
** Published manuscript: [[Media: Comparison of different calculation methods of proton ranges.pdf | PDF]]&lt;br /&gt;
** Elsevier link: [http://www.sciencedirect.com/science/article/pii/S0969806X17303869?via%3Dihub 10.1016/j.radphyschem.2017.08.028]&lt;br /&gt;
** arXiv link: [https://arxiv.org/abs/1704.08854  arXiv:1704.08854]&lt;br /&gt;
&lt;br /&gt;
==== In review ====&lt;br /&gt;
Pettersen, H.E.S., Meric, I., Odland, O.H., Shafiee, H., Sølie, J., Röhrich, D. &amp;lt;b&amp;gt;Proton Tracking Algorithm for Pixel Based Range Telescopes for Proton Computed Tomography&amp;lt;/b&amp;gt;. Submitted to Web of Conferences after the &amp;quot;Connecting the Dots&amp;quot; conference.&lt;br /&gt;
** Proffered manuscript: [[Media: detector-proton-tracking.pdf | PDF]]&lt;br /&gt;
&lt;br /&gt;
==== Under construction ====&lt;br /&gt;
* H. E. S. Pettersen, J. Sølie, I. Meric, D. Röhrich, O. H. Odland, etc.: &amp;lt;b&amp;gt;Design optimization of a digital tracking calorimeter&amp;lt;/b&amp;gt;&lt;br /&gt;
** Preliminary manuscript: [[Media: Design optimization of a digital tracking calorimeter.pdf | PDF]]&lt;br /&gt;
** This paper might be generalized somewhat for publication&lt;br /&gt;
&lt;br /&gt;
* J. Sølie, H. E. S. Pettersen, I. Meric, O. H. Odland, H. Helstrup and D. Röhrich: &amp;lt;b&amp;gt;A comparison of longitudinal and lateral range for protons traversing complex media using GATE, MCNP6 and FLUKA Monte Carlo simulations&amp;lt;/b&amp;gt;. Submitted to Radiat. Phys. Chem. in conjunction with the [http://conferences.illinois.edu/irrma2017/ IRRMA X] conference.&lt;br /&gt;
** Preliminary manuscript: [[Media: 1708.00668.pdf |PDF]]&lt;br /&gt;
** arXiv link: [https://arxiv.org/abs/1708.00668  arXiv:1708.00668]&lt;br /&gt;
&lt;br /&gt;
== [[Meetings]] ==&lt;br /&gt;
Notes and slides from the project meetings&lt;br /&gt;
&lt;br /&gt;
== [[Workshops]] ==&lt;br /&gt;
Slides from the project [[Workshops | workshops]]&lt;br /&gt;
&lt;br /&gt;
== [[Workpackages]] ==&lt;br /&gt;
Sections for the different work packages&lt;br /&gt;
&lt;br /&gt;
== [[People]] ==&lt;br /&gt;
Contact info of involved people &lt;br /&gt;
&lt;br /&gt;
== [[Links]] ==&lt;br /&gt;
Link collection of topics regarding the project&lt;br /&gt;
&lt;br /&gt;
== Getting started ==&lt;br /&gt;
* Note: ASK is a placeholder that marks questions &lt;br /&gt;
* Note: Search function is not ideal. It doesn&#039;t find all occurences of the search term, e.g. aries finds libraries but not aries.bccs&lt;br /&gt;
&lt;br /&gt;
* Consult the [//meta.wikimedia.org/wiki/Help:Contents User&#039;s Guide] for information on using the wiki software.&lt;br /&gt;
* [//www.mediawiki.org/wiki/Manual:Configuration_settings Configuration settings list]&lt;br /&gt;
* [//www.mediawiki.org/wiki/Manual:FAQ MediaWiki FAQ]&lt;br /&gt;
* [https://lists.wikimedia.org/mailman/listinfo/mediawiki-announce MediaWiki release mailing list]&lt;/div&gt;</summary>
		<author><name>Hpe090</name></author>
	</entry>
	<entry>
		<id>https://pct.wiki.uib.no/index.php?title=File:Detector-proton-tracking.pdf&amp;diff=511</id>
		<title>File:Detector-proton-tracking.pdf</title>
		<link rel="alternate" type="text/html" href="https://pct.wiki.uib.no/index.php?title=File:Detector-proton-tracking.pdf&amp;diff=511"/>
		<updated>2018-08-01T08:38:27Z</updated>

		<summary type="html">&lt;p&gt;Hpe090: File uploaded with MsUpload&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;File uploaded with MsUpload&lt;/div&gt;</summary>
		<author><name>Hpe090</name></author>
	</entry>
	<entry>
		<id>https://pct.wiki.uib.no/index.php?title=File:A_digital_tracking_calorimeter_for_proton_computed_tomography.pdf&amp;diff=510</id>
		<title>File:A digital tracking calorimeter for proton computed tomography.pdf</title>
		<link rel="alternate" type="text/html" href="https://pct.wiki.uib.no/index.php?title=File:A_digital_tracking_calorimeter_for_proton_computed_tomography.pdf&amp;diff=510"/>
		<updated>2018-06-04T08:04:33Z</updated>

		<summary type="html">&lt;p&gt;Hpe090: Hpe090 uploaded a new version of File:A digital tracking calorimeter for proton computed tomography.pdf&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;File uploaded with MsUpload&lt;/div&gt;</summary>
		<author><name>Hpe090</name></author>
	</entry>
	<entry>
		<id>https://pct.wiki.uib.no/index.php?title=Publications&amp;diff=509</id>
		<title>Publications</title>
		<link rel="alternate" type="text/html" href="https://pct.wiki.uib.no/index.php?title=Publications&amp;diff=509"/>
		<updated>2018-06-04T08:01:17Z</updated>

		<summary type="html">&lt;p&gt;Hpe090: /* From Bergen Proton CT  group */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== From Bergen Proton CT  group ==&lt;br /&gt;
&lt;br /&gt;
==== Published ====&lt;br /&gt;
&lt;br /&gt;
* Pettersen, H.E.S., J. Alme, A. van den Brink, M. Chaar, D. Fehlker, I. Meric, O.H. Odland, et al. &amp;lt;b&amp;gt;Proton Tracking in a High-Granularity Digital Tracking Calorimeter for Proton CT Purposes&amp;lt;/b&amp;gt;.  Nuclear Instruments and Methods in Physics Research Section A: Accelerators, Spectrometers, Detectors and Associated Equipment 860C, 51–61. doi:10.1016/j.nima.2017.02.007. &lt;br /&gt;
** Published manuscript: [[Media: 1-s2.0-S0168900217301882-main.pdf | PDF]]&lt;br /&gt;
** Elsevier link: [http://www.sciencedirect.com/science/article/pii/S0168900217301882 doi:10.1016/j.nima.2017.02.007]&lt;br /&gt;
** arXiv link: [https://arxiv.org/abs/1611.02031 arXiv:1611.02031]&lt;br /&gt;
&lt;br /&gt;
* Pettersen, H.E.S., Chaar, M., Meric, I., Odland, O.H., Sølie, J., Röhrich, D., n.d. &amp;lt;b&amp;gt;Accuracy of parameterized proton range models; a comparison&amp;lt;/b&amp;gt;. doi:10.1016/j.radphyschem.2017.08.02&lt;br /&gt;
** Published manuscript: [[Media: Comparison of different calculation methods of proton ranges.pdf | PDF]]&lt;br /&gt;
** Elsevier link: [http://www.sciencedirect.com/science/article/pii/S0969806X17303869?via%3Dihub 10.1016/j.radphyschem.2017.08.028]&lt;br /&gt;
** arXiv link: [https://arxiv.org/abs/1704.08854  arXiv:1704.08854]&lt;br /&gt;
&lt;br /&gt;
==== In review ====&lt;br /&gt;
&lt;br /&gt;
* J. Sølie, I. Meric and H. Pettersen: &amp;lt;b&amp;gt;A comparison of longitudinal and lateral range for protons traversing complex media using GATE, MCNP6 and FLUKA Monte Carlo simulations&amp;lt;/b&amp;gt;.&lt;br /&gt;
** Preliminary manuscript: [[Media: NACP2017ActaDraft_(1).pdf |PDF]]&lt;br /&gt;
** Submitted to Rad. Chem. Phys. in conjunction with the [http://conferences.illinois.edu/irrma2017/ IRRMA X] conference.&lt;br /&gt;
&lt;br /&gt;
==== Under construction ====&lt;br /&gt;
&lt;br /&gt;
* H. Pettersen, J. Sølie, I. Meric, D. Röhrich, O. H. Odland, etc.: &amp;lt;b&amp;gt;Design optimization of a pixelated proton range telescope&amp;lt;/b&amp;gt;&lt;br /&gt;
** Preliminary manuscript: [[Media: Design optimization of a digital tracking calorimeter.pdf | PDF]]&lt;br /&gt;
** This paper might be generalized somewhat for publication&lt;br /&gt;
&lt;br /&gt;
* H. Pettersen, I. Meric, O. H. Odland, H. Shafiee, J. Sølie, D. Röhrich: &amp;lt;b&amp;gt;Reconstruction of Proton Tracks Inside a Digital Tracking Calorimeter for Proton Computed Tomography&amp;lt;/b&amp;gt;&lt;br /&gt;
** To be submitted as part of the &#039;&#039;Connecting the Dots&#039;&#039; workshop proceedings, with deadline 2018-06-30.&lt;br /&gt;
&lt;br /&gt;
== Review articles on proton CT ==&lt;br /&gt;
* G. Poludniowski, N.M. Allinson, P.M. Evans, &#039;&#039;&#039;Proton radiography and tomography with application to proton therapy&#039;&#039;&#039;, The British Journal of Radiology. 88 (2015) 20150134. doi:10.1259/bjr.20150134.&lt;br /&gt;
* C. Civinini, &#039;&#039;&#039;Tracking for pCT - global status update&#039;&#039;&#039;, (2013).&lt;br /&gt;
&lt;br /&gt;
== Historical ==&lt;br /&gt;
* K.M. Hanson, C.A. Taylor, M.A. Paciotti, R.J. Macek, D.B. Laubacher, R.L. Hutson, T.M. Cannon, J.N. Bradbury, &#039;&#039;&#039;Computed tomography using proton energy loss&#039;&#039;&#039;, Physics in Medicine and Biology. 26 (1981) 965.&lt;br /&gt;
* M. Urie, M. Goitein, W.R. Holley, G.T. Chen, &#039;&#039;&#039;Degradation of the Bragg peak due to inhomogeneities&#039;&#039;&#039;, Physics in Medicine and Biology. 31 (1986) 1.&lt;br /&gt;
* K.M. Hanson, J.N. Bradbury, R.A. Koeppe, R.J. Macek, D.R. Machen, R. Morgado, M.A. Paciotti, S.A. Sandford, V.W. Steward, &#039;&#039;&#039;Proton computed tomography of human specimens&#039;&#039;&#039;, Physics in Medicine and Biology. 27 (1982) 25.&lt;br /&gt;
* A.M. Koehler, &#039;&#039;&#039;Proton Radiography&#039;&#039;&#039;, Science. 160 (1968) 303–304.&lt;br /&gt;
* M. Gotein, &#039;&#039;&#039;The measurement of tissue heterodensity to guide charged particle radiotherapy&#039;&#039;&#039;, International Journal of Radiation Oncology Biological Physics. 3 (1977) 27–33.&lt;br /&gt;
* B. Schaffner, E. Pedroni, &#039;&#039;&#039;The precision of proton range calculations in proton radiotherapy treatment planning: experimental verification of the relation between CT-HU and proton stopping power&#039;&#039;&#039;, Physics in Medicine and Biology. 43 (1998) 1579.&lt;br /&gt;
* H.F.-W. Sadrozinski, V. Bashkirov, B. Keeney, L.R. Johnson, S.G. Peggs, G. Ross, T. Satogata, R.W.M. Schulte, A. Seiden, K. Shanazi, D.C. Williams, &#039;&#039;&#039;Toward Proton Computed Tomography&#039;&#039;&#039;, IEEE Transactions on Nuclear Science. 51 (2004) 3–9. doi:10.1109/TNS.2003.823044.&lt;br /&gt;
&lt;br /&gt;
== On proton CT reconstruction with some novel approaches ==&lt;br /&gt;
* R. Rescigno, C. Bopp, M. Rousseau, D. Brasse, &#039;&#039;&#039;A pencil beam approach to proton computed tomography&#039;&#039;&#039;, Medical Physics. 42 (2015) 6610–6624. doi:10.1118/1.4933422.&lt;br /&gt;
* C.T. Quiñones, J.M. Létang, S. Rit, &#039;&#039;&#039;Filtered back-projection reconstruction for attenuation proton CT along most likely paths, Physics in Medicine and Biology.&#039;&#039;&#039; 61 (2016) 3258–3278. doi:10.1088/0031-9155/61/9/3258.&lt;br /&gt;
* C. Bopp, J. Colin, D. Cussol, C. Finck, M. Labalme, M. Rousseau, D. Brasse, &#039;&#039;&#039;Proton computed tomography from multiple physics processes&#039;&#039;&#039;, Physics in Medicine and Biology. 58 (2013) 7261–7276. doi:10.1088/0031-9155/58/20/7261.&lt;br /&gt;
* M. Bruzzi, N. Blumenkrantz, J. Feldt, J. Heimann, H.F.-W. Sadrozinski, A. Seiden, D.C. Williams, V. Bashkirov, R. Schulte, D. Menichelli, M. Scaringella, G.A.P. Cirrone, G. Cuttone, N. Randazzo, V. Sipala, D. Lo Presti, &#039;&#039;&#039;Prototype Tracking Studies for Proton CT&#039;&#039;&#039;, IEEE Transactions on Nuclear Science. 54 (2007) 140–145. doi:10.1109/TNS.2006.889642.&lt;br /&gt;
* C. Bopp, R. Rescigno, M. Rousseau, D. Brasse, &#039;&#039;&#039;Quantitative proton imaging from multiple physics processes: a proof of concept&#039;&#039;&#039;, Physics in Medicine and Biology. 60 (2015) 5325–5341. doi:10.1088/0031-9155/60/13/5325.&lt;br /&gt;
* C. Bopp, R. Rescigno, M. Rousseau, D. Brasse, &#039;&#039;&#039;The impact of tracking system properties on the most likely path estimation in proton CT&#039;&#039;&#039;, Physics in Medicine and Biology. 59 (2014) N197–N210. doi:10.1088/0031-9155/59/23/N197.&lt;br /&gt;
&lt;br /&gt;
== Publications on proton CT sorted by group ==&lt;br /&gt;
&lt;br /&gt;
=== From PRaVDA ===&lt;br /&gt;
* M. Esposito, T. Anaxagoras, P.M. Evans, S. Green, S. Manolopoulos, J. Nieto-Camero, D.J. Parker, G. Poludniowski, T. Price, C. Waltham, N.M. Allinson, &#039;&#039;&#039;CMOS Active Pixel Sensors as energy-range detectors for proton Computed Tomography&#039;&#039;&#039;, Journal of Instrumentation. 10 (2015) C06001–C06001. doi:10.1088/1748-0221/10/06/C06001.&lt;br /&gt;
* M. Esposito, T. Anaxagoras, A. Fant, K. Wells, A. Konstantinidis, J.P.F. Osmond, P.M. Evans, R.D. Speller, N.M. Allinson, &#039;&#039;&#039;DynAMITe: a wafer scale sensor for biomedical applications&#039;&#039;&#039;, Journal of Instrumentation. 6 (2011) C12064–C12064. doi:10.1088/1748-0221/6/12/C12064.&lt;br /&gt;
* T. Price, M. Esposito, G. Poludniowski, J. Taylor, C. Waltham, D.J. Parker, S. Green, S. Manolopoulos, N.M. Allinson, T. Anaxagoras, P. Evans, J. Nieto-Camero, &#039;&#039;&#039;Expected proton signal sizes in the PRaVDA Range Telescope for proton Computed Tomography&#039;&#039;&#039;, Journal of Instrumentation. 10 (2015) P05013–P05013. doi:10.1088/1748-0221/10/05/P05013.&lt;br /&gt;
* G. Poludniowski, N.M. Allinson, P.M. Evans, &#039;&#039;&#039;Proton computed tomography reconstruction using a backprojection-then-filtering approach&#039;&#039;&#039;, Physics in Medicine and Biology. 59 (2014) 7905–7918. doi:10.1088/0031-9155/59/24/7905.&lt;br /&gt;
* G. Poludniowski, N.M. Allinson, T. Anaxagoras, M. Esposito, S. Green, S. Manolopoulos, J. Nieto-Camero, D.J. Parker, T. Price, P.M. Evans, &#039;&#039;&#039;Proton-counting radiography for proton therapy: a proof of principle using CMOS APS technology&#039;&#039;&#039;, Physics in Medicine and Biology. 59 (2014) 2569–2581. doi:10.1088/0031-9155/59/11/2569.&lt;br /&gt;
&lt;br /&gt;
=== From Lomda Linda ===&lt;br /&gt;
* T. Plautz, V. Bashkirov, V. Feng, F. Hurley, R.P. Johnson, C. Leary, S. Macafee, A. Plumb, V. Rykalin, H.F.-W. Sadrozinski, K. Schubert, R. Schulte, B. Schultze, D. Steinberg, M. Witt, A. Zatserklyaniy, &#039;&#039;&#039;200 MeV Proton Radiography Studies With a Hand Phantom Using a Prototype Proton CT Scanner&#039;&#039;&#039;, IEEE Transactions on Medical Imaging. 33 (2014) 875–881. doi:10.1109/TMI.2013.2297278.&lt;br /&gt;
* R. P. Johnson, V. Bashkirov, L. DeWitt, V. Giacometti, R. F. Hurley, P. Piersimoni, T. E. Plautz, H. F. W. Sadrozinski, K. Schubert, R. Schulte, B. Schultze, A. Zatserklyaniy, &#039;&#039;&#039;A Fast Experimental Scanner for Proton CT: Technical Performance and First Experience With Phantom Scans&#039;&#039;&#039;, IEEE Transactions on Nuclear Science. 63 (2016) 52–60. doi:10.1109/TNS.2015.2491918.&lt;br /&gt;
* R. Schulte, V. Bashkirov, T. Li, Z. Liang, K. Mueller, J. Heimann, L.R. Johnson, B. Keeney, H.-W. Sadrozinski, A. Seiden, others, &#039;&#039;&#039;Conceptual design of a proton computed tomography system for applications in proton radiation therapy&#039;&#039;&#039;, Nuclear Science, IEEE Transactions on. 51 (2004) 866–872.&lt;br /&gt;
* H.-W. Sadrozinski, R.P. Johnson, S. Macafee, A. Plumb, D. Steinberg, A. Zatserklyaniy, V.A. Bashkirov, R.F. Hurley, R.W. Schulte, &#039;&#039;&#039;Development of a head scanner for proton CT&#039;&#039;&#039;, Nuclear Instruments and Methods in Physics Research Section A: Accelerators, Spectrometers, Detectors and Associated Equipment. 699 (2013) 205–210.&lt;br /&gt;
* H.-W. Sadrozinski, V. Bashkirov, M. Bruzzi, L.R. Johnson, B. Keeney, G. Ross, R.W. Schulte, A. Seiden, K. Shahnazi, D.C. Williams, others, &#039;&#039;&#039;Issues in proton computed tomography&#039;&#039;&#039;, Nuclear Instruments and Methods in Physics Research Section A: Accelerators, Spectrometers, Detectors and Associated Equipment. 511 (2003) 275–281.&lt;br /&gt;
* R.W. Schulte, A.J. Wroe, &#039;&#039;&#039;New developments in treatment planning and verification of particle beam therapy&#039;&#039;&#039;, Translational Cancer Research. 1 (2012) 184–195.&lt;br /&gt;
* V.A. Bashkirov, R.W. Schulte, R.F. Hurley, R.P. Johnson, H.F.-W. Sadrozinski, A. Zatserklyaniy, T. Plautz, V. Giacometti, &#039;&#039;&#039;Novel scintillation detector design and performance for proton radiography and computed tomography&#039;&#039;&#039;, Medical Physics. 43 (2016) 664–674. doi:10.1118/1.4939255.&lt;br /&gt;
* R.W. Schulte, V. Bashkirov, R. Johnson, H.-W. Sadrozinski, K.E. Schubert, &#039;&#039;&#039;Overview of the LLUMC/UCSC/CSUSB Phase 2 Proton CT Project&#039;&#039;&#039;, Transactions of the American Nuclear Society. 106 (2012) 59.&lt;br /&gt;
* R. Johnson, V.A. Bashkirov, V. Giacometti, R.F. Hurley, P. Piersimoni, T. Plautz, &#039;&#039;&#039;Results from a pre-clinical head scanner for proton CT&#039;&#039;&#039;, (2014).&lt;br /&gt;
* R.F. Hurley, R.W. Schulte, V.A. Bashkirov, G. Coutrakon, H.-W. Sadrozinski, B. Patyal, &#039;&#039;&#039;The Phase I Proton CT Scanner and Test Beam Results at LLUMC&#039;&#039;&#039;, invited, Transactions of the American Nuclear Society. 106 (2012) 63.&lt;br /&gt;
* R.P. Johnson, J. DeWitt, C. Holcomb, S. Macafee, H.F.-W. Sadrozinski, D. Steinberg, &#039;&#039;&#039;Tracker Readout ASIC for Proton Computed Tomography Data Acquisition&#039;&#039;&#039;, IEEE Transactions on Nuclear Science. 60 (2013) 3262–3269. doi:10.1109/TNS.2013.2274663.&lt;br /&gt;
* R.F. Hurley, R.W. Schulte, V.A. Bashkirov, A.J. Wroe, A. Ghebremedhin, H.F.-W. Sadrozinski, V. Rykalin, G. Coutrakon, P. Koss, B. Patyal, &#039;&#039;&#039;Water-equivalent path length calibration of a prototype proton CT scanner&#039;&#039;&#039;, Medical Physics. 39 (2012) 2438. doi:10.1118/1.3700173.&lt;br /&gt;
&lt;br /&gt;
=== From the NIU project (using scitillating fibres) ===&lt;br /&gt;
* M. Naimuddin, G. Coutrakon, G. Blazey, S. Boi, A. Dyshkant, B. Erdelyi, D. Hedin, E. Johnson, J. Krider, V. Rukalin, others, &#039;&#039;&#039;Development of a proton Computed Tomography detector system&#039;&#039;&#039;, Journal of Instrumentation. 11 (2016) C02012.&lt;br /&gt;
* S.A. Uzunyan, G. Blazey, S. Boi, G. Coutrakon, A. Dyshkant, B. Erdelyi, A. Gearhart, D. Hedin, E. Johnson, J. Krider, others, &#039;&#039;&#039;Development of a proton Computed Tomography (pCT) scanner at NIU&#039;&#039;&#039;, arXiv Preprint arXiv:1312.3977. (2013). http://arxiv.org/abs/1312.3977 (accessed January 15, 2015).&lt;br /&gt;
&lt;br /&gt;
=== From the PRIMA project at INFN ===&lt;br /&gt;
* M. Scaringella, M. Bruzzi, M. Bucciolini, M. Carpinelli, G.A.P. Cirrone, C. Civinini, G. Cuttone, D.L. Presti, S. Pallotta, C. Pugliatti, N. Randazzo, F. Romano, V. Sipala, C. Stancampiano, C. Talamonti, E. Vanzi, M. Zani, &#039;&#039;&#039;A proton Computed Tomography based medical imaging system&#039;&#039;&#039;, Journal of Instrumentation. 9 (2014) C12009–C12009. doi:10.1088/1748-0221/9/12/C12009.&lt;br /&gt;
* C. Civinini, M. Bruzzi, M. Bucciolini, M. Carpinelli, G.A.P. Cirrone, G. Cuttone, D. Lo Presti, S. Pallotta, C. Pugliatti, N. Randazzo, others, &#039;&#039;&#039;Recent results on the development of a proton computed tomography system&#039;&#039;&#039;, Nuclear Instruments and Methods in Physics Research Section A: Accelerators, Spectrometers, Detectors and Associated Equipment. 732 (2013) 573–576.&lt;br /&gt;
* E. Vanzi, M. Bruzzi, M. Bucciolini, G.A.P. Cirrone, C. Civinini, G. Cuttone, D. Lo Presti, S. Pallotta, C. Pugliatti, N. Randazzo, F. Romano, M. Scaringella, V. Sipala, C. Stancampiano, C. Talamonti, M. Zani, &#039;&#039;&#039;The PRIMA collaboration: Preliminary results in FBP reconstruction of pCT data&#039;&#039;&#039;, Nuclear Instruments and Methods in Physics Research Section A: Accelerators, Spectrometers, Detectors and Associated Equipment. 730 (2013) 184–190. doi:10.1016/j.nima.2013.05.193.&lt;br /&gt;
* M. Scaringella, M. Brianzi, M. Bruzzi, M. Bucciolini, M. Carpinelli, G.A.P. Cirrone, C. Civinini, G. Cuttone, D. Lo Presti, S. Pallotta, others, &#039;&#039;&#039;The PRIMA (Proton Imaging) collaboration: development of a proton Computed Tomography apparatus&#039;&#039;&#039;, Nuclear Instruments and Methods in Physics Research Section A: Accelerators, Spectrometers, Detectors and Associated Equipment. 730 (2013) 178–183.&lt;br /&gt;
* V. Sipala, N. Randazzo, D.L. Presti, C. Stancampiano, M. Bruzzi, M. Bucciolini, S. Pallotta, M. Scaringella, C. Talamonti, M. Tesi, others, &#039;&#039;&#039;Upgrade of the proton Computed Tomography system of the PRIMA project&#039;&#039;&#039;, PoS (RD11). 13 (2011). http://www.researchgate.net/publication/230709286_Upgrade_of_the_proton_Computed_Tomography_system_of_the_PRIMA_project_Speaker/file/9fcfd5034f8b703175.pdf (accessed January 15, 2015).&lt;br /&gt;
&lt;br /&gt;
=== From the proton radiography project at Heidelberg ===&lt;br /&gt;
* I. Rinaldi, S. Brons, O. Jäkel, B. Voss, K. Parodi, &#039;&#039;&#039;A method to increase the nominal range resolution of a stack of parallel-plate ionization chambers&#039;&#039;&#039;, Physics in Medicine and Biology. 59 (2014) 5501–5515. doi:10.1088/0031-9155/59/18/5501.&lt;br /&gt;
* C. Kurz, A. Mairani, K. Parodi, &#039;&#039;&#039;First experimental-based characterization of oxygen ion beam depth dose distributions at the Heidelberg Ion-Beam Therapy Center&#039;&#039;&#039;, Physics in Medicine and Biology. 57 (2012) 5017–5034. doi:10.1088/0031-9155/57/15/5017.&lt;br /&gt;
&lt;br /&gt;
=== (Historical) proton radiography at PSI ===&lt;br /&gt;
* P. Pemler, J. Besserer, J. De Boer, M. Dellert, C. Gahn, M. Moosburger, U. Schneider, E. Pedroni, H. Stäuble, &#039;&#039;&#039;A detector system for proton radiography on the gantry of the Paul-Scherrer-Institute&#039;&#039;&#039;, Nuclear Instruments and Methods in Physics Research Section A: Accelerators, Spectrometers, Detectors and Associated Equipment. 432 (1999) 483–495.&lt;br /&gt;
* N.S.P. King, E. Ables, K. Adams, K.R. Alrick, J.F. Amann, S. Balzar, P.D. Barnes Jr, M.L. Crow, S.B. Cushing, J.C. Eddleman, others, &#039;&#039;&#039;An 800-MeV proton radiography facility for dynamic experiments&#039;&#039;&#039;, Nuclear Instruments and Methods in Physics Research Section A: Accelerators, Spectrometers, Detectors and Associated Equipment. 424 (1999) 84–91.&lt;br /&gt;
* S. Braccini, A. Ereditato, I. Kreslo, U. Moser, C. Pistillo, S. Studer, P. Scampoli, A. Coray, E. Pedroni, &#039;&#039;&#039;First results on proton radiography with nuclear emulsion detectors&#039;&#039;&#039;, Journal of Instrumentation. 5 (2010) P09001.&lt;br /&gt;
* S. Braccini, A. Ereditato, I. Kreslo, U. Moser, C. Pistillo, P. Scampoli, S. Studer, &#039;&#039;&#039;Nuclear Emulsion Film Detectors for Proton Radiography: Design and Test of the First Prototype&#039;&#039;&#039;, arXiv Preprint arXiv:1001.0857. (2010). http://arxiv.org/abs/1001.0857 (accessed January 15, 2015).&lt;br /&gt;
&lt;br /&gt;
== Interesting theses on proton CT ==&lt;br /&gt;
* P.C. Tsopelas, &#039;&#039;&#039;Applying GridPix as 3D particle tracker for proton radiography&#039;&#039;&#039;, MSc, University of Utrecht, 2011. https://wiki.nikhef.nl/detector/pub/Main/ArticlesAndTalks/Panagiotis_Tsopelas_Master_Thesis.pdf (accessed January 12, 2015).&lt;br /&gt;
* E. Hansen, &#039;&#039;&#039;Charge diffusion modelling for a monolithic active pixel sensor detector with application to proton CT&#039;&#039;&#039;, BSc Project work, NTNU, 2016.&lt;br /&gt;
* M. Yang, &#039;&#039;&#039;Dual Energy computed tomography for proton therapy treatment planning&#039;&#039;&#039;, PhD, University of Texas, 2011.&lt;br /&gt;
* S.N. Penfold, &#039;&#039;&#039;Image reconstruction and Monte Carlo simulations in the development of proton computed tomography for applications in proton radiation therpy&#039;&#039;&#039;, PhD, University of Wollongong, 2010.&lt;br /&gt;
* D.C. Hansen, &#039;&#039;&#039;Improving Ion Computed Tomography&#039;&#039;&#039;, PhD, Aarhus Universitet, 2014. http://pure.au.dk/portal/files/83515131/dissertation.pdf (accessed January 12, 2015).&lt;br /&gt;
* L. Maczewski, &#039;&#039;&#039;Measurements and simulations of MAPS (Monolithic Active Pixel Sensors) response to charged particles - a study towards a vertex detector at the ILC&#039;&#039;&#039;, PhD, 2010. http://arxiv.org/abs/1005.3710 (accessed January 12, 2015).&lt;br /&gt;
&lt;br /&gt;
== On the ALPIDE chip ==&lt;br /&gt;
* M. Mager, &#039;&#039;&#039;ALPIDE, the Monolithic Active Pixel Sensor for the ALICE ITS upgrade&#039;&#039;&#039;, Nuclear Instruments and Methods in Physics Research Section A: Accelerators, Spectrometers, Detectors and Associated Equipment. 824 (2016) 434–438. doi:10.1016/j.nima.2015.09.057.&lt;br /&gt;
* C. Cavicchioli, P.L. Chalmet, P. Giubilato, H. Hillemanns, A. Junique, T. Kugathasan, M. Mager, C.A. Marin Tobon, P. Martinengo, S. Mattiazzo, H. Mugnier, L. Musa, D. Pantano, J. Rousset, F. Reidt, P. Riedler, W. Snoeys, J.W. Van Hoorne, P. Yang, &#039;&#039;&#039;Design and characterization of novel monolithic pixel sensors for the ALICE ITS upgrade&#039;&#039;&#039;, Nuclear Instruments and Methods in Physics Research Section A: Accelerators, Spectrometers, Detectors and Associated Equipment. 765 (2014) 177–182. doi:10.1016/j.nima.2014.05.027.&lt;br /&gt;
* G. Aglieri Rinella, &#039;&#039;&#039;The ALPIDE pixel sensor chip for the upgrade of the ALICE Inner Tracking System&#039;&#039;&#039;, Nuclear Instruments and Methods in Physics Research Section A: Accelerators, Spectrometers, Detectors and Associated Equipment. (2016). doi:10.1016/j.nima.2016.05.016.&lt;/div&gt;</summary>
		<author><name>Hpe090</name></author>
	</entry>
	<entry>
		<id>https://pct.wiki.uib.no/index.php?title=Main_Page&amp;diff=497</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://pct.wiki.uib.no/index.php?title=Main_Page&amp;diff=497"/>
		<updated>2018-03-09T09:47:19Z</updated>

		<summary type="html">&lt;p&gt;Hpe090: /* Theses */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Wiki for the proton CT project&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== [[Documentation]] ==&lt;br /&gt;
[[Documentation]] on how to install and use the involved software packages, the development workflow, etc.&lt;br /&gt;
&lt;br /&gt;
== [[Publications]] ==&lt;br /&gt;
List of publications from the project.&lt;br /&gt;
&lt;br /&gt;
==== Workpackage Reports ====&lt;br /&gt;
* [[Media:pCT-WP1-1-Rev2 design recommendations.pdf | pCT-WP1-01-Rev2 Detector design specifications]] (Rev2: Added carrier board thickness recommendations)&lt;br /&gt;
* [[:File:pCT-WP1-02-Rev3 (Radiation environment and electronics).pdf | pCT-WP1-02-Rev3 Radiation environment and placement of electronics]] (Rev2: Updated results and assumptions, Rev3: Updated with 1-10cm results) (Please feel free to contact [mailto:jars@hvl.no Jarle Rambo Sølie] if there are any questions regarding the contents of this document.&lt;br /&gt;
&lt;br /&gt;
==== Theses ====&lt;br /&gt;
* [http://bora.uib.no/bitstream/handle/1956/10412/135279255.pdf?sequence=1&amp;amp;isAllowed=y Kristian Austreim - MSc - 2015 - Proton computed tomography readout testing and detector design]&lt;br /&gt;
* [http://bora.uib.no/bitstream/handle/1956/16041/thesis_final.pdf?sequence=1&amp;amp;isAllowed=y Ola Grøttvik - MSc - 2017 - Design of High-Speed Digital Readout System for Use in Proton Computed Tomography]&lt;br /&gt;
* [http://bora.uib.no/bitstream/handle/1956/16758/PCT_readout_testing_and_detector_HSchaug.pdf?sequence=1&amp;amp;isAllowed=y Håkon Schaug - MSc - 2017 - Proton Beam Test Of A High Granularity Calorimeter For Proton Computed Tomography]&lt;br /&gt;
* [https://brage.bibsys.no/xmlui/bitstream/handle/11250/2434108/16246_FULLTEXT.pdf?sequence=1&amp;amp;isAllowed=y Even Hansen - MSc - 2017 - Charge Diffusion Modelling for a Monolithic Active Pixel Sensor Detector with Application to Proton CT]&lt;br /&gt;
* [[:File:A digital tracking calorimeter for proton computed tomography.pdf | Helge Pettersen - PhD - 2018 - A Digital Tracking Calorimeter for Proton Computed Tomography]]&lt;br /&gt;
&lt;br /&gt;
==== Journal Articles ====&lt;br /&gt;
* Pettersen, H.E.S., J. Alme, A. van den Brink, M. Chaar, D. Fehlker, I. Meric, O.H. Odland, et al. &amp;lt;b&amp;gt;Proton Tracking in a High-Granularity Digital Tracking Calorimeter for Proton CT Purposes&amp;lt;/b&amp;gt;.  Nuclear Instruments and Methods in Physics Research A 860C, 51–61. doi:10.1016/j.nima.2017.02.007. &lt;br /&gt;
** Published manuscript: [[Media: 1-s2.0-S0168900217301882-main.pdf | PDF]]&lt;br /&gt;
** Elsevier link: [http://www.sciencedirect.com/science/article/pii/S0168900217301882 doi:10.1016/j.nima.2017.02.007]&lt;br /&gt;
** arXiv link: [https://arxiv.org/abs/1611.02031 arXiv:1611.02031]&lt;br /&gt;
&lt;br /&gt;
* Pettersen, H.E.S., Chaar, M., Meric, I., Odland, O.H., Sølie, J., Röhrich, D., n.d. &amp;lt;b&amp;gt;Accuracy of parameterized proton range models; a comparison&amp;lt;/b&amp;gt;. Radiation Physics and Chemistry, 144 (C): 295-297 (2018). doi:10.1016/j.radphyschem.2017.08.02&lt;br /&gt;
** Published manuscript: [[Media: Comparison of different calculation methods of proton ranges.pdf | PDF]]&lt;br /&gt;
** Elsevier link: [http://www.sciencedirect.com/science/article/pii/S0969806X17303869?via%3Dihub 10.1016/j.radphyschem.2017.08.028]&lt;br /&gt;
** arXiv link: [https://arxiv.org/abs/1704.08854  arXiv:1704.08854]&lt;br /&gt;
&lt;br /&gt;
==== In review ====&lt;br /&gt;
* J. Sølie, H. E. S. Pettersen, I. Meric, O. H. Odland, H. Helstrup and D. Röhrich: &amp;lt;b&amp;gt;A comparison of longitudinal and lateral range for protons traversing complex media using GATE, MCNP6 and FLUKA Monte Carlo simulations&amp;lt;/b&amp;gt;. Submitted to Radiat. Phys. Chem. in conjunction with the [http://conferences.illinois.edu/irrma2017/ IRRMA X] conference.&lt;br /&gt;
** Preliminary manuscript: [[Media: 1708.00668.pdf |PDF]]&lt;br /&gt;
** arXiv link: [https://arxiv.org/abs/1708.00668  arXiv:1708.00668]&lt;br /&gt;
&lt;br /&gt;
==== Under construction ====&lt;br /&gt;
* H. E. S. Pettersen, J. Sølie, I. Meric, D. Röhrich, O. H. Odland, etc.: &amp;lt;b&amp;gt;Design optimization of a digital tracking calorimeter&amp;lt;/b&amp;gt;&lt;br /&gt;
** Preliminary manuscript: [[Media: Design optimization of a digital tracking calorimeter.pdf | PDF]]&lt;br /&gt;
** This paper might be generalized somewhat for publication&lt;br /&gt;
&lt;br /&gt;
== [[Meetings]] ==&lt;br /&gt;
Notes and slides from the project meetings&lt;br /&gt;
&lt;br /&gt;
== [[Workshops]] ==&lt;br /&gt;
Slides from the project [[Workshops | workshops]]&lt;br /&gt;
&lt;br /&gt;
== [[Workpackages]] ==&lt;br /&gt;
Sections for the different work packages&lt;br /&gt;
&lt;br /&gt;
== [[People]] ==&lt;br /&gt;
Contact info of involved people &lt;br /&gt;
&lt;br /&gt;
== [[Links]] ==&lt;br /&gt;
Link collection of topics regarding the project&lt;br /&gt;
&lt;br /&gt;
== Getting started ==&lt;br /&gt;
* Note: ASK is a placeholder that marks questions &lt;br /&gt;
* Note: Search function is not ideal. It doesn&#039;t find all occurences of the search term, e.g. aries finds libraries but not aries.bccs&lt;br /&gt;
&lt;br /&gt;
* Consult the [//meta.wikimedia.org/wiki/Help:Contents User&#039;s Guide] for information on using the wiki software.&lt;br /&gt;
* [//www.mediawiki.org/wiki/Manual:Configuration_settings Configuration settings list]&lt;br /&gt;
* [//www.mediawiki.org/wiki/Manual:FAQ MediaWiki FAQ]&lt;br /&gt;
* [https://lists.wikimedia.org/mailman/listinfo/mediawiki-announce MediaWiki release mailing list]&lt;/div&gt;</summary>
		<author><name>Hpe090</name></author>
	</entry>
	<entry>
		<id>https://pct.wiki.uib.no/index.php?title=Main_Page&amp;diff=496</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://pct.wiki.uib.no/index.php?title=Main_Page&amp;diff=496"/>
		<updated>2018-03-09T09:46:24Z</updated>

		<summary type="html">&lt;p&gt;Hpe090: Added theses to publications&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Wiki for the proton CT project&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== [[Documentation]] ==&lt;br /&gt;
[[Documentation]] on how to install and use the involved software packages, the development workflow, etc.&lt;br /&gt;
&lt;br /&gt;
== [[Publications]] ==&lt;br /&gt;
List of publications from the project.&lt;br /&gt;
&lt;br /&gt;
==== Workpackage Reports ====&lt;br /&gt;
* [[Media:pCT-WP1-1-Rev2 design recommendations.pdf | pCT-WP1-01-Rev2 Detector design specifications]] (Rev2: Added carrier board thickness recommendations)&lt;br /&gt;
* [[:File:pCT-WP1-02-Rev3 (Radiation environment and electronics).pdf | pCT-WP1-02-Rev3 Radiation environment and placement of electronics]] (Rev2: Updated results and assumptions, Rev3: Updated with 1-10cm results) (Please feel free to contact [mailto:jars@hvl.no Jarle Rambo Sølie] if there are any questions regarding the contents of this document.&lt;br /&gt;
&lt;br /&gt;
==== Theses ====&lt;br /&gt;
* [http://bora.uib.no/bitstream/handle/1956/10412/135279255.pdf?sequence=1&amp;amp;isAllowed=y Kristian Austreim - MSc - 2015 - Proton computed tomography readout testing and detector design]&lt;br /&gt;
* [http://bora.uib.no/bitstream/handle/1956/16041/thesis_final.pdf?sequence=1&amp;amp;isAllowed=y Ola Grøttvik - MSc - 2017 - Design of High-Speed Digital Readout System for Use in Proton Computed Tomography]&lt;br /&gt;
* [http://bora.uib.no/bitstream/handle/1956/16758/PCT_readout_testing_and_detector_HSchaug.pdf?sequence=1&amp;amp;isAllowed=y Håkon Schaug - MSc - Proton Beam Test Of A High Granularity Calorimeter For Proton Computed Tomography]&lt;br /&gt;
* [https://brage.bibsys.no/xmlui/bitstream/handle/11250/2434108/16246_FULLTEXT.pdf?sequence=1&amp;amp;isAllowed=y Even Hansen - MSc - Charge Diffusion Modelling for a Monolithic Active Pixel Sensor Detector with Application to Proton CT]&lt;br /&gt;
* [[:File:A digital tracking calorimeter for proton computed tomography.pdf | Helge Pettersen - PhD - 2018 - A Digital Tracking Calorimeter for Proton Computed Tomography]]&lt;br /&gt;
&lt;br /&gt;
==== Journal Articles ====&lt;br /&gt;
* Pettersen, H.E.S., J. Alme, A. van den Brink, M. Chaar, D. Fehlker, I. Meric, O.H. Odland, et al. &amp;lt;b&amp;gt;Proton Tracking in a High-Granularity Digital Tracking Calorimeter for Proton CT Purposes&amp;lt;/b&amp;gt;.  Nuclear Instruments and Methods in Physics Research A 860C, 51–61. doi:10.1016/j.nima.2017.02.007. &lt;br /&gt;
** Published manuscript: [[Media: 1-s2.0-S0168900217301882-main.pdf | PDF]]&lt;br /&gt;
** Elsevier link: [http://www.sciencedirect.com/science/article/pii/S0168900217301882 doi:10.1016/j.nima.2017.02.007]&lt;br /&gt;
** arXiv link: [https://arxiv.org/abs/1611.02031 arXiv:1611.02031]&lt;br /&gt;
&lt;br /&gt;
* Pettersen, H.E.S., Chaar, M., Meric, I., Odland, O.H., Sølie, J., Röhrich, D., n.d. &amp;lt;b&amp;gt;Accuracy of parameterized proton range models; a comparison&amp;lt;/b&amp;gt;. Radiation Physics and Chemistry, 144 (C): 295-297 (2018). doi:10.1016/j.radphyschem.2017.08.02&lt;br /&gt;
** Published manuscript: [[Media: Comparison of different calculation methods of proton ranges.pdf | PDF]]&lt;br /&gt;
** Elsevier link: [http://www.sciencedirect.com/science/article/pii/S0969806X17303869?via%3Dihub 10.1016/j.radphyschem.2017.08.028]&lt;br /&gt;
** arXiv link: [https://arxiv.org/abs/1704.08854  arXiv:1704.08854]&lt;br /&gt;
&lt;br /&gt;
==== In review ====&lt;br /&gt;
* J. Sølie, H. E. S. Pettersen, I. Meric, O. H. Odland, H. Helstrup and D. Röhrich: &amp;lt;b&amp;gt;A comparison of longitudinal and lateral range for protons traversing complex media using GATE, MCNP6 and FLUKA Monte Carlo simulations&amp;lt;/b&amp;gt;. Submitted to Radiat. Phys. Chem. in conjunction with the [http://conferences.illinois.edu/irrma2017/ IRRMA X] conference.&lt;br /&gt;
** Preliminary manuscript: [[Media: 1708.00668.pdf |PDF]]&lt;br /&gt;
** arXiv link: [https://arxiv.org/abs/1708.00668  arXiv:1708.00668]&lt;br /&gt;
&lt;br /&gt;
==== Under construction ====&lt;br /&gt;
* H. E. S. Pettersen, J. Sølie, I. Meric, D. Röhrich, O. H. Odland, etc.: &amp;lt;b&amp;gt;Design optimization of a digital tracking calorimeter&amp;lt;/b&amp;gt;&lt;br /&gt;
** Preliminary manuscript: [[Media: Design optimization of a digital tracking calorimeter.pdf | PDF]]&lt;br /&gt;
** This paper might be generalized somewhat for publication&lt;br /&gt;
&lt;br /&gt;
== [[Meetings]] ==&lt;br /&gt;
Notes and slides from the project meetings&lt;br /&gt;
&lt;br /&gt;
== [[Workshops]] ==&lt;br /&gt;
Slides from the project [[Workshops | workshops]]&lt;br /&gt;
&lt;br /&gt;
== [[Workpackages]] ==&lt;br /&gt;
Sections for the different work packages&lt;br /&gt;
&lt;br /&gt;
== [[People]] ==&lt;br /&gt;
Contact info of involved people &lt;br /&gt;
&lt;br /&gt;
== [[Links]] ==&lt;br /&gt;
Link collection of topics regarding the project&lt;br /&gt;
&lt;br /&gt;
== Getting started ==&lt;br /&gt;
* Note: ASK is a placeholder that marks questions &lt;br /&gt;
* Note: Search function is not ideal. It doesn&#039;t find all occurences of the search term, e.g. aries finds libraries but not aries.bccs&lt;br /&gt;
&lt;br /&gt;
* Consult the [//meta.wikimedia.org/wiki/Help:Contents User&#039;s Guide] for information on using the wiki software.&lt;br /&gt;
* [//www.mediawiki.org/wiki/Manual:Configuration_settings Configuration settings list]&lt;br /&gt;
* [//www.mediawiki.org/wiki/Manual:FAQ MediaWiki FAQ]&lt;br /&gt;
* [https://lists.wikimedia.org/mailman/listinfo/mediawiki-announce MediaWiki release mailing list]&lt;/div&gt;</summary>
		<author><name>Hpe090</name></author>
	</entry>
	<entry>
		<id>https://pct.wiki.uib.no/index.php?title=File:A_digital_tracking_calorimeter_for_proton_computed_tomography.pdf&amp;diff=495</id>
		<title>File:A digital tracking calorimeter for proton computed tomography.pdf</title>
		<link rel="alternate" type="text/html" href="https://pct.wiki.uib.no/index.php?title=File:A_digital_tracking_calorimeter_for_proton_computed_tomography.pdf&amp;diff=495"/>
		<updated>2018-03-09T09:44:12Z</updated>

		<summary type="html">&lt;p&gt;Hpe090: File uploaded with MsUpload&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;File uploaded with MsUpload&lt;/div&gt;</summary>
		<author><name>Hpe090</name></author>
	</entry>
	<entry>
		<id>https://pct.wiki.uib.no/index.php?title=Workshops&amp;diff=494</id>
		<title>Workshops</title>
		<link rel="alternate" type="text/html" href="https://pct.wiki.uib.no/index.php?title=Workshops&amp;diff=494"/>
		<updated>2018-03-09T09:08:11Z</updated>

		<summary type="html">&lt;p&gt;Hpe090: /* 07 - 08.03 in Bergen */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== 2016 ==&lt;br /&gt;
=== 22.11.-23.11. in Bergen ===&lt;br /&gt;
&lt;br /&gt;
Agenda&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Tuesday, 22.11.: Presentations&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
09.00 Bergen pCT – Dieter&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
09.30 Padua pCT – Piero&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
10.00 [[:File:workshop 2016-11 beam test results.pdf | Beam test results with FOCAL prototype - Helge]]&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
11.15 [[:File:workshop 2016-11 MC simulations Helge.pdf | Simulations – Ilker (+ Helge + Jarle)]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
12:00 Software infrastructure – Boris&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
13.30 [[Media:2016-11-22_Pettersen_PCT_reconstruction.pdf | Proton CT reconstruction, Helge E. S. Pettersen]]&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Hardware&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
14.00 Radiation levels - Jarle&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
14.45 Hardware: sensors, mechanical &amp;amp; electrical integration&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
15.15 Readout concept - Haakon&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Wednesday, 23.11.: Hands-on&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
09.00 pCT simulation &amp;amp; pCT reconstruction software&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Minutes: [[:File:pCT_planning_Nov_2016.pdf]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* ASK slides direct here or link to new page&lt;br /&gt;
* [[Media:Imeric_simulation_pCT_workshop_22_11_2016.pdf | Monte Carlo code overview and comparison, Ilker Meric]]&lt;br /&gt;
&lt;br /&gt;
== 2017 ==&lt;br /&gt;
=== 15.09. in Bergen ===&lt;br /&gt;
&lt;br /&gt;
Agenda&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Friday, 15.09.: Presentations&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
09.00 – 09.20 WP5 – Chip integration onto PCBs (D. Röhrich)&lt;br /&gt;
&lt;br /&gt;
09.20 – 10.10 WP1 – [[:File:2017-09-15 workshop Helge Pettersen.pdf | Monte Carlo simulations for the optimization of detector geometry (H. E. S. Pettersen)]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
10.10 – 10.35 WP1 – [[:File:RadiationEnvironment_Electronics.pdf | Monte Carlo simulations of the expected radiation environment, Jarle Rambo Sølie (Slide 17 and 18 contains new &#039;&#039;&#039;flux&#039;&#039;&#039; calculations for the FPGAs)]]&lt;br /&gt;
&lt;br /&gt;
10.30 – 10.40  Break&lt;br /&gt;
&lt;br /&gt;
10.40 – 11.00 WP3 – [[:File:pCT Workshop Presentation - 15 sept 2017.pdf | Initial considerations for the pCT readout (O. Grøttvik) ]]&lt;br /&gt;
&lt;br /&gt;
11.00 – 11.45 WP7 – [[:File:2017-09-15_pctbergen_mlp.pdf | Most likely path (MLP) estimation (M. Richter)]]&lt;br /&gt;
&lt;br /&gt;
11.45 – 12.00 WP5 – Potential cooling schemes (H. Shafiee)&lt;br /&gt;
&lt;br /&gt;
12.00 – 12.30  Lunch break&lt;br /&gt;
&lt;br /&gt;
12.30 – 14.00  WP meetings (Each WP plans activities for the rest of the year)&lt;br /&gt;
&lt;br /&gt;
14.00 – 16.00  Group discussion (meeting back in the bachelor room)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [[:File:WP5, Potential cooling &amp;amp; Heat transfer.pdf | WP5 - Potential cooling schemes &amp;amp; heat transfer, Hesam Shafiee]]&lt;br /&gt;
&lt;br /&gt;
=== 06.11 - 07.11 in Bergen / Meeting with UU ===&lt;br /&gt;
&lt;br /&gt;
Monday, 06.11., room 456, IFT:&lt;br /&gt;
&lt;br /&gt;
09:30 – 10:15  [[:File:Chania_2017_pCT.pdf | General Overview (Dieter)]]&lt;br /&gt;
&lt;br /&gt;
10:15 – 11:15  [[:File:Detector layout specifications.pdf | Detector layout specification (Helge)]]&lt;br /&gt;
&lt;br /&gt;
11:30 – 12:00  [[:File:RadiationEnvironment_06-11.pdf | Radiation environment (Jarle)]]&lt;br /&gt;
&lt;br /&gt;
13:00 – 16:00  Mounting of chips on PCBs&lt;br /&gt;
* [[:File:IB_FPC_DiMauro-R260417.pdf | ITS wire bonding technique ]]&lt;br /&gt;
* [[:File:pCT meeting -LTU-NIKHEF 2017 11 06-7-F.pdf | Alternative technique - tab bonding, chipcable (Ton, Slava, Ihor)]]&lt;br /&gt;
&lt;br /&gt;
Tuesday, 07.11., room 456, IFT:&lt;br /&gt;
&lt;br /&gt;
09:00 – 12:00  Discussions on mechanical aspects of the pCT prototype &lt;br /&gt;
* [[:File:Potential cooling schemes, pCT workshop 2.pdf | Potential Cooling Schemes for the pCT prototype (Hesam)]]&lt;br /&gt;
&lt;br /&gt;
13:00 – 14:00  [[:File:pCT Presentation - 7 nov 2017.pdf | Interface to readout electronic (Ola)]]&lt;br /&gt;
&lt;br /&gt;
14:00 – 16:00  Towards a FoCal prototype&lt;br /&gt;
&lt;br /&gt;
07.03 Wednesday (Teaching lab 260, Department of Physics and Technology, University of Bergen)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== 2018 ==&lt;br /&gt;
=== 07 - 08.03 in Bergen ===&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;07.03 Wednesday (Teaching lab 260, Department of Physics and Technology, University of Bergen)&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
09.30 – 09.45 Welcome (Dieter R.)&lt;br /&gt;
&lt;br /&gt;
09.45 – 10.15 Sensor characterization; beam test results of sensor chips (Andreas S. , data from Australia / Susmita A., Viljar E., data from Oslo, WP2)  &lt;br /&gt;
&lt;br /&gt;
10.15 – 10.45 [[:File:workshop-helge-pettersen-2018-03-07.pdf | Latest on the detector simulations / Detector design specs. (Helge)]]&lt;br /&gt;
&lt;br /&gt;
10.45 – 11.00 Coffee break&lt;br /&gt;
&lt;br /&gt;
11.00 – 11.30 [[:File:07MarchMLP.pdf | Initial MLP implementations / considerations (Jarle)]]&lt;br /&gt;
&lt;br /&gt;
11.30 – 12.00 Updates on computing environment / DAQ system (WP4)&lt;br /&gt;
&lt;br /&gt;
12.00 – 13.00 Lunch&lt;br /&gt;
&lt;br /&gt;
13.00 – 14.00 [[:File:Workshop-Hesam-Shafiee-2018-03-07.pdf | Updates on the mechanical design: support structure + cooling (Hesam)]]&lt;br /&gt;
&lt;br /&gt;
14.00 – 15.00 Updates on the development of read-out electronics (WP3)&lt;br /&gt;
&lt;br /&gt;
15.00 – 16.00 Outlook and discussions&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;08.03 Thursday (Bachelorrommet, 3rd floor, Department of Physics and Technology, University of Bergen)&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
09.30 – 10.30  Short presentations of the ongoing MSc projects with relevance to the pCT-project&lt;br /&gt;
&lt;br /&gt;
10.30 – 11.30  Activities of Kharkiv team for pCT/FoCal projects: current status (Ihor T.)&lt;br /&gt;
&lt;br /&gt;
11.30 – 12.00  Introduction to topological data analysis (Nello B.)&lt;br /&gt;
&lt;br /&gt;
12.00 – 12.30  Discussions on applications of topological data analysis to pCT&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
12.30 – 16.00 Rest of the day is reserved for WP-meetings. Those WPs with interdependencies should have meetings with each other to clarify challenges and plan activities.&lt;/div&gt;</summary>
		<author><name>Hpe090</name></author>
	</entry>
	<entry>
		<id>https://pct.wiki.uib.no/index.php?title=Workshops&amp;diff=489</id>
		<title>Workshops</title>
		<link rel="alternate" type="text/html" href="https://pct.wiki.uib.no/index.php?title=Workshops&amp;diff=489"/>
		<updated>2018-03-08T08:44:38Z</updated>

		<summary type="html">&lt;p&gt;Hpe090: /* 07 - 08.03 in Bergen */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== 2016 ==&lt;br /&gt;
=== 22.11.-23.11. in Bergen ===&lt;br /&gt;
&lt;br /&gt;
Agenda&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Tuesday, 22.11.: Presentations&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
09.00 Bergen pCT – Dieter&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
09.30 Padua pCT – Piero&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
10.00 [[:File:workshop 2016-11 beam test results.pdf | Beam test results with FOCAL prototype - Helge]]&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
11.15 [[:File:workshop 2016-11 MC simulations Helge.pdf | Simulations – Ilker (+ Helge + Jarle)]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
12:00 Software infrastructure – Boris&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
13.30 [[Media:2016-11-22_Pettersen_PCT_reconstruction.pdf | Proton CT reconstruction, Helge E. S. Pettersen]]&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Hardware&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
14.00 Radiation levels - Jarle&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
14.45 Hardware: sensors, mechanical &amp;amp; electrical integration&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
15.15 Readout concept - Haakon&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Wednesday, 23.11.: Hands-on&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
09.00 pCT simulation &amp;amp; pCT reconstruction software&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Minutes: [[:File:pCT_planning_Nov_2016.pdf]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* ASK slides direct here or link to new page&lt;br /&gt;
* [[Media:Imeric_simulation_pCT_workshop_22_11_2016.pdf | Monte Carlo code overview and comparison, Ilker Meric]]&lt;br /&gt;
&lt;br /&gt;
== 2017 ==&lt;br /&gt;
=== 15.09. in Bergen ===&lt;br /&gt;
&lt;br /&gt;
Agenda&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Friday, 15.09.: Presentations&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
09.00 – 09.20 WP5 – Chip integration onto PCBs (D. Röhrich)&lt;br /&gt;
&lt;br /&gt;
09.20 – 10.10 WP1 – [[:File:2017-09-15 workshop Helge Pettersen.pdf | Monte Carlo simulations for the optimization of detector geometry (H. E. S. Pettersen)]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
10.10 – 10.35 WP1 – [[:File:RadiationEnvironment_Electronics.pdf | Monte Carlo simulations of the expected radiation environment, Jarle Rambo Sølie (Slide 17 and 18 contains new &#039;&#039;&#039;flux&#039;&#039;&#039; calculations for the FPGAs)]]&lt;br /&gt;
&lt;br /&gt;
10.30 – 10.40  Break&lt;br /&gt;
&lt;br /&gt;
10.40 – 11.00 WP3 – [[:File:pCT Workshop Presentation - 15 sept 2017.pdf | Initial considerations for the pCT readout (O. Grøttvik) ]]&lt;br /&gt;
&lt;br /&gt;
11.00 – 11.45 WP7 – [[:File:2017-09-15_pctbergen_mlp.pdf | Most likely path (MLP) estimation (M. Richter)]]&lt;br /&gt;
&lt;br /&gt;
11.45 – 12.00 WP5 – Potential cooling schemes (H. Shafiee)&lt;br /&gt;
&lt;br /&gt;
12.00 – 12.30  Lunch break&lt;br /&gt;
&lt;br /&gt;
12.30 – 14.00  WP meetings (Each WP plans activities for the rest of the year)&lt;br /&gt;
&lt;br /&gt;
14.00 – 16.00  Group discussion (meeting back in the bachelor room)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [[:File:WP5, Potential cooling &amp;amp; Heat transfer.pdf | WP5 - Potential cooling schemes &amp;amp; heat transfer, Hesam Shafiee]]&lt;br /&gt;
&lt;br /&gt;
=== 06.11 - 07.11 in Bergen / Meeting with UU ===&lt;br /&gt;
&lt;br /&gt;
Monday, 06.11., room 456, IFT:&lt;br /&gt;
&lt;br /&gt;
09:30 – 10:15  [[:File:Chania_2017_pCT.pdf | General Overview (Dieter)]]&lt;br /&gt;
&lt;br /&gt;
10:15 – 11:15  [[:File:Detector layout specifications.pdf | Detector layout specification (Helge)]]&lt;br /&gt;
&lt;br /&gt;
11:30 – 12:00  [[:File:RadiationEnvironment_06-11.pdf | Radiation environment (Jarle)]]&lt;br /&gt;
&lt;br /&gt;
13:00 – 16:00  Mounting of chips on PCBs&lt;br /&gt;
* [[:File:IB_FPC_DiMauro-R260417.pdf | ITS wire bonding technique ]]&lt;br /&gt;
* [[:File:pCT meeting -LTU-NIKHEF 2017 11 06-7-F.pdf | Alternative technique - tab bonding, chipcable (Ton, Slava, Ihor)]]&lt;br /&gt;
&lt;br /&gt;
Tuesday, 07.11., room 456, IFT:&lt;br /&gt;
&lt;br /&gt;
09:00 – 12:00  Discussions on mechanical aspects of the pCT prototype &lt;br /&gt;
* [[:File:Potential cooling schemes, pCT workshop 2.pdf | Potential Cooling Schemes for the pCT prototype (Hesam)]]&lt;br /&gt;
&lt;br /&gt;
13:00 – 14:00  [[:File:pCT Presentation - 7 nov 2017.pdf | Interface to readout electronic (Ola)]]&lt;br /&gt;
&lt;br /&gt;
14:00 – 16:00  Towards a FoCal prototype&lt;br /&gt;
&lt;br /&gt;
07.03 Wednesday (Teaching lab 260, Department of Physics and Technology, University of Bergen)&lt;br /&gt;
&lt;br /&gt;
== 2018 ==&lt;br /&gt;
=== 07 - 08.03 in Bergen ===&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;07.03 Wednesday (Teaching lab 260, Department of Physics and Technology, University of Bergen)&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
09.30 – 09.45 Welcome (Dieter R.)&lt;br /&gt;
&lt;br /&gt;
09.45 – 10.15 Sensor characterization; beam test results of sensor chips (Andreas S. , data from Australia / Susmita A., Viljar E., data from Oslo, WP2)  &lt;br /&gt;
&lt;br /&gt;
10.15 – 10.45 [[:File:workshop-helge-pettersen-2018-03-07.pdf | Latest on the detector simulations / Detector design specs. (Helge)]]&lt;br /&gt;
&lt;br /&gt;
10.45 – 11.00 Coffee break&lt;br /&gt;
&lt;br /&gt;
11.00 – 11.30 [[:File:07MarchMLP.pdf | Initial MLP implementations / considerations (Jarle)]]&lt;br /&gt;
&lt;br /&gt;
11.30 – 12.00 Updates on computing environment / DAQ system (WP4)&lt;br /&gt;
&lt;br /&gt;
12.00 – 13.00 Lunch&lt;br /&gt;
&lt;br /&gt;
13.00 – 14.00 Updates on the mechanical design (support structure + cooling) (WP5)&lt;br /&gt;
&lt;br /&gt;
14.00 – 15.00 Updates on the development of read-out electronics (WP3)&lt;br /&gt;
&lt;br /&gt;
15.00 – 16.00 Outlook and discussions&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;08.03 Thursday (Bachelorrommet, 3rd floor, Department of Physics and Technology, University of Bergen)&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
09.30 – 10.30  Short presentations of the ongoing MSc projects with relevance to the pCT-project&lt;br /&gt;
&lt;br /&gt;
10.30 – 11.30  Activities of Kharkiv team for pCT/FoCal projects: current status (Ihor T.)&lt;br /&gt;
&lt;br /&gt;
11.30 – 12.00  Introduction to topological data analysis (Nello B.)&lt;br /&gt;
&lt;br /&gt;
12.00 – 12.30  Discussions on applications of topological data analysis to pCT&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
12.30 – 16.00 Rest of the day is reserved for WP-meetings. Those WPs with interdependencies should have meetings with each other to clarify challenges and plan activities.&lt;/div&gt;</summary>
		<author><name>Hpe090</name></author>
	</entry>
	<entry>
		<id>https://pct.wiki.uib.no/index.php?title=Workshops&amp;diff=486</id>
		<title>Workshops</title>
		<link rel="alternate" type="text/html" href="https://pct.wiki.uib.no/index.php?title=Workshops&amp;diff=486"/>
		<updated>2018-03-08T08:40:19Z</updated>

		<summary type="html">&lt;p&gt;Hpe090: Added workshop 07-03 march 2018&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== 2016 ==&lt;br /&gt;
=== 22.11.-23.11. in Bergen ===&lt;br /&gt;
&lt;br /&gt;
Agenda&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Tuesday, 22.11.: Presentations&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
09.00 Bergen pCT – Dieter&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
09.30 Padua pCT – Piero&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
10.00 [[:File:workshop 2016-11 beam test results.pdf | Beam test results with FOCAL prototype - Helge]]&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
11.15 [[:File:workshop 2016-11 MC simulations Helge.pdf | Simulations – Ilker (+ Helge + Jarle)]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
12:00 Software infrastructure – Boris&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
13.30 [[Media:2016-11-22_Pettersen_PCT_reconstruction.pdf | Proton CT reconstruction, Helge E. S. Pettersen]]&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Hardware&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
14.00 Radiation levels - Jarle&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
14.45 Hardware: sensors, mechanical &amp;amp; electrical integration&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
15.15 Readout concept - Haakon&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Wednesday, 23.11.: Hands-on&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
09.00 pCT simulation &amp;amp; pCT reconstruction software&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Minutes: [[:File:pCT_planning_Nov_2016.pdf]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* ASK slides direct here or link to new page&lt;br /&gt;
* [[Media:Imeric_simulation_pCT_workshop_22_11_2016.pdf | Monte Carlo code overview and comparison, Ilker Meric]]&lt;br /&gt;
&lt;br /&gt;
== 2017 ==&lt;br /&gt;
=== 15.09. in Bergen ===&lt;br /&gt;
&lt;br /&gt;
Agenda&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Friday, 15.09.: Presentations&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
09.00 – 09.20 WP5 – Chip integration onto PCBs (D. Röhrich)&lt;br /&gt;
&lt;br /&gt;
09.20 – 10.10 WP1 – [[:File:2017-09-15 workshop Helge Pettersen.pdf | Monte Carlo simulations for the optimization of detector geometry (H. E. S. Pettersen)]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
10.10 – 10.35 WP1 – [[:File:RadiationEnvironment_Electronics.pdf | Monte Carlo simulations of the expected radiation environment, Jarle Rambo Sølie (Slide 17 and 18 contains new &#039;&#039;&#039;flux&#039;&#039;&#039; calculations for the FPGAs)]]&lt;br /&gt;
&lt;br /&gt;
10.30 – 10.40  Break&lt;br /&gt;
&lt;br /&gt;
10.40 – 11.00 WP3 – [[:File:pCT Workshop Presentation - 15 sept 2017.pdf | Initial considerations for the pCT readout (O. Grøttvik) ]]&lt;br /&gt;
&lt;br /&gt;
11.00 – 11.45 WP7 – [[:File:2017-09-15_pctbergen_mlp.pdf | Most likely path (MLP) estimation (M. Richter)]]&lt;br /&gt;
&lt;br /&gt;
11.45 – 12.00 WP5 – Potential cooling schemes (H. Shafiee)&lt;br /&gt;
&lt;br /&gt;
12.00 – 12.30  Lunch break&lt;br /&gt;
&lt;br /&gt;
12.30 – 14.00  WP meetings (Each WP plans activities for the rest of the year)&lt;br /&gt;
&lt;br /&gt;
14.00 – 16.00  Group discussion (meeting back in the bachelor room)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [[:File:WP5, Potential cooling &amp;amp; Heat transfer.pdf | WP5 - Potential cooling schemes &amp;amp; heat transfer, Hesam Shafiee]]&lt;br /&gt;
&lt;br /&gt;
=== 06.11 - 07.11 in Bergen / Meeting with UU ===&lt;br /&gt;
&lt;br /&gt;
Monday, 06.11., room 456, IFT:&lt;br /&gt;
&lt;br /&gt;
09:30 – 10:15  [[:File:Chania_2017_pCT.pdf | General Overview (Dieter)]]&lt;br /&gt;
&lt;br /&gt;
10:15 – 11:15  [[:File:Detector layout specifications.pdf | Detector layout specification (Helge)]]&lt;br /&gt;
&lt;br /&gt;
11:30 – 12:00  [[:File:RadiationEnvironment_06-11.pdf | Radiation environment (Jarle)]]&lt;br /&gt;
&lt;br /&gt;
13:00 – 16:00  Mounting of chips on PCBs&lt;br /&gt;
* [[:File:IB_FPC_DiMauro-R260417.pdf | ITS wire bonding technique ]]&lt;br /&gt;
* [[:File:pCT meeting -LTU-NIKHEF 2017 11 06-7-F.pdf | Alternative technique - tab bonding, chipcable (Ton, Slava, Ihor)]]&lt;br /&gt;
&lt;br /&gt;
Tuesday, 07.11., room 456, IFT:&lt;br /&gt;
&lt;br /&gt;
09:00 – 12:00  Discussions on mechanical aspects of the pCT prototype &lt;br /&gt;
* [[:File:Potential cooling schemes, pCT workshop 2.pdf | Potential Cooling Schemes for the pCT prototype (Hesam)]]&lt;br /&gt;
&lt;br /&gt;
13:00 – 14:00  [[:File:pCT Presentation - 7 nov 2017.pdf | Interface to readout electronic (Ola)]]&lt;br /&gt;
&lt;br /&gt;
14:00 – 16:00  Towards a FoCal prototype&lt;br /&gt;
&lt;br /&gt;
07.03 Wednesday (Teaching lab 260, Department of Physics and Technology, University of Bergen)&lt;br /&gt;
&lt;br /&gt;
== 2018 ==&lt;br /&gt;
=== 07 - 08.03 in Bergen ===&lt;br /&gt;
&lt;br /&gt;
09.30 – 09.45 Welcome (Dieter R.)&lt;br /&gt;
&lt;br /&gt;
09.45 – 10.15 Sensor characterization; beam test results of sensor chips (Andreas S. , data from Australia / Susmita A., Viljar E., data from Oslo, WP2)  &lt;br /&gt;
&lt;br /&gt;
10.15 – 10.45 [[:File:workshop-helge-pettersen-2018-03-07.pdf | Latest on the detector simulations / Detector design specs. (Helge)]]&lt;br /&gt;
&lt;br /&gt;
10.45 – 11.00 Coffee break&lt;br /&gt;
&lt;br /&gt;
11.00 – 11.30 Initial MLP implementations / considerations (WP1)&lt;br /&gt;
&lt;br /&gt;
11.30 – 12.00 Updates on computing environment / DAQ system (WP4)&lt;br /&gt;
&lt;br /&gt;
12.00 – 13.00 Lunch&lt;br /&gt;
&lt;br /&gt;
13.00 – 14.00 Updates on the mechanical design (support structure + cooling) (WP5)&lt;br /&gt;
&lt;br /&gt;
14.00 – 15.00 Updates on the development of read-out electronics (WP3)&lt;br /&gt;
&lt;br /&gt;
15.00 – 16.00 Outlook and discussions&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
08.03 Thursday (Bachelorrommet, 3rd floor, Department of Physics and Technology, University of Bergen)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
09.30 – 10.30  Short presentations of the ongoing MSc projects with relevance to the pCT-project&lt;br /&gt;
&lt;br /&gt;
10.30 – 11.30  Activities of Kharkiv team for pCT/FoCal projects: current status (Ihor T.)&lt;br /&gt;
&lt;br /&gt;
11.30 – 12.00  Introduction to topological data analysis (Nello B.)&lt;br /&gt;
&lt;br /&gt;
12.00 – 12.30  Discussions on applications of topological data analysis to pCT&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
12.30 – 16.00 Rest of the day is reserved for WP-meetings. Those WPs with interdependencies should have meetings with each other to clarify challenges and plan activities.&lt;/div&gt;</summary>
		<author><name>Hpe090</name></author>
	</entry>
	<entry>
		<id>https://pct.wiki.uib.no/index.php?title=File:Workshop-helge-pettersen-2018-03-07.pdf&amp;diff=485</id>
		<title>File:Workshop-helge-pettersen-2018-03-07.pdf</title>
		<link rel="alternate" type="text/html" href="https://pct.wiki.uib.no/index.php?title=File:Workshop-helge-pettersen-2018-03-07.pdf&amp;diff=485"/>
		<updated>2018-03-08T08:39:40Z</updated>

		<summary type="html">&lt;p&gt;Hpe090: File uploaded with MsUpload&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;File uploaded with MsUpload&lt;/div&gt;</summary>
		<author><name>Hpe090</name></author>
	</entry>
	<entry>
		<id>https://pct.wiki.uib.no/index.php?title=Main_Page&amp;diff=479</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://pct.wiki.uib.no/index.php?title=Main_Page&amp;diff=479"/>
		<updated>2017-12-21T10:02:19Z</updated>

		<summary type="html">&lt;p&gt;Hpe090: /* Published */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Wiki for the proton CT project&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== [[Documentation]] ==&lt;br /&gt;
[[Documentation]] on how to install and use the involved software packages, the development workflow, etc.&lt;br /&gt;
&lt;br /&gt;
== [[Publications]] ==&lt;br /&gt;
List of publications from the project.&lt;br /&gt;
&lt;br /&gt;
=== From WP1: ===&lt;br /&gt;
&lt;br /&gt;
==== Workpackage Reports ====&lt;br /&gt;
* [[Media:pCT-WP1-1-Rev2 design recommendations.pdf | pCT-WP1-01-Rev2 Detector design specifications]] (Rev2: Added carrier board thickness recommendations)&lt;br /&gt;
* [[:File:pCT-WP1-02-Rev2 (Radiation environment and electronics).pdf | pCT-WP1-02-Rev1 Radiation environment and placement of electronics]] (Rev2: Updated results and assumptions) (Please feel free to contact [mailto:jars@hvl.no Jarle Rambo Sølie] if there are any questions regarding the contents of this document.&lt;br /&gt;
&lt;br /&gt;
==== Published ====&lt;br /&gt;
&lt;br /&gt;
* Pettersen, H.E.S., J. Alme, A. van den Brink, M. Chaar, D. Fehlker, I. Meric, O.H. Odland, et al. &amp;lt;b&amp;gt;Proton Tracking in a High-Granularity Digital Tracking Calorimeter for Proton CT Purposes&amp;lt;/b&amp;gt;.  Nuclear Instruments and Methods in Physics Research A 860C, 51–61. doi:10.1016/j.nima.2017.02.007. &lt;br /&gt;
** Published manuscript: [[Media: 1-s2.0-S0168900217301882-main.pdf | PDF]]&lt;br /&gt;
** Elsevier link: [http://www.sciencedirect.com/science/article/pii/S0168900217301882 doi:10.1016/j.nima.2017.02.007]&lt;br /&gt;
** arXiv link: [https://arxiv.org/abs/1611.02031 arXiv:1611.02031]&lt;br /&gt;
&lt;br /&gt;
* Pettersen, H.E.S., Chaar, M., Meric, I., Odland, O.H., Sølie, J., Röhrich, D., n.d. &amp;lt;b&amp;gt;Accuracy of parameterized proton range models; a comparison&amp;lt;/b&amp;gt;. Radiation Physics and Chemistry, 144 (C): 295-297 (2018). doi:10.1016/j.radphyschem.2017.08.02&lt;br /&gt;
** Published manuscript: [[Media: Comparison of different calculation methods of proton ranges.pdf | PDF]]&lt;br /&gt;
** Elsevier link: [http://www.sciencedirect.com/science/article/pii/S0969806X17303869?via%3Dihub 10.1016/j.radphyschem.2017.08.028]&lt;br /&gt;
** arXiv link: [https://arxiv.org/abs/1704.08854  arXiv:1704.08854]&lt;br /&gt;
&lt;br /&gt;
==== In review ====&lt;br /&gt;
* J. Sølie, H. E. S. Pettersen, I. Meric, O. H. Odland, H. Helstrup and D. Röhrich: &amp;lt;b&amp;gt;A comparison of longitudinal and lateral range for protons traversing complex media using GATE, MCNP6 and FLUKA Monte Carlo simulations&amp;lt;/b&amp;gt;. Submitted to Radiat. Phys. Chem. in conjunction with the [http://conferences.illinois.edu/irrma2017/ IRRMA X] conference.&lt;br /&gt;
** Preliminary manuscript: [[Media: 1708.00668.pdf |PDF]]&lt;br /&gt;
** arXiv link: [https://arxiv.org/abs/1708.00668  arXiv:1708.00668]&lt;br /&gt;
&lt;br /&gt;
==== Under construction ====&lt;br /&gt;
* H. E. S. Pettersen, J. Sølie, I. Meric, D. Röhrich, O. H. Odland, etc.: &amp;lt;b&amp;gt;Design optimization of a digital tracking calorimeter&amp;lt;/b&amp;gt;&lt;br /&gt;
** Preliminary manuscript: [[Media: Design optimization of a digital tracking calorimeter.pdf | PDF]]&lt;br /&gt;
** This paper might be generalized somewhat for publication&lt;br /&gt;
&lt;br /&gt;
== [[Meetings]] ==&lt;br /&gt;
Notes and slides from the project meetings&lt;br /&gt;
&lt;br /&gt;
== [[Workshops]] ==&lt;br /&gt;
Slides from the project [[Workshops | workshops]]&lt;br /&gt;
&lt;br /&gt;
== [[Workpackages]] ==&lt;br /&gt;
Sections for the different work packages&lt;br /&gt;
&lt;br /&gt;
== [[People]] ==&lt;br /&gt;
Contact info of involved people &lt;br /&gt;
&lt;br /&gt;
== [[Links]] ==&lt;br /&gt;
Link collection of topics regarding the project&lt;br /&gt;
&lt;br /&gt;
== Getting started ==&lt;br /&gt;
* Note: ASK is a placeholder that marks questions &lt;br /&gt;
* Note: Search function is not ideal. It doesn&#039;t find all occurences of the search term, e.g. aries finds libraries but not aries.bccs&lt;br /&gt;
&lt;br /&gt;
* Consult the [//meta.wikimedia.org/wiki/Help:Contents User&#039;s Guide] for information on using the wiki software.&lt;br /&gt;
* [//www.mediawiki.org/wiki/Manual:Configuration_settings Configuration settings list]&lt;br /&gt;
* [//www.mediawiki.org/wiki/Manual:FAQ MediaWiki FAQ]&lt;br /&gt;
* [https://lists.wikimedia.org/mailman/listinfo/mediawiki-announce MediaWiki release mailing list]&lt;/div&gt;</summary>
		<author><name>Hpe090</name></author>
	</entry>
	<entry>
		<id>https://pct.wiki.uib.no/index.php?title=WP1_Ideas_for_project_to_pursue&amp;diff=478</id>
		<title>WP1 Ideas for project to pursue</title>
		<link rel="alternate" type="text/html" href="https://pct.wiki.uib.no/index.php?title=WP1_Ideas_for_project_to_pursue&amp;diff=478"/>
		<updated>2017-11-23T07:07:29Z</updated>

		<summary type="html">&lt;p&gt;Hpe090: /* Re-implementation of Maczewski model to analytically describe charge diffusion process */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Below is a list of ideas regarding DTC data analysis, design etc. that might be worthwhile to pursue.&lt;br /&gt;
&lt;br /&gt;
== Time-dependence of charge diffusion process ==&lt;br /&gt;
We see in the ALPIDE chips that the quick integration time of ~10 µs reveals a time dependence on the charge diffusion process -- i.e. that too small clusters, medium clusters and then large clusters with holes are visible. It would be interesting to see if it&#039;s possible to use the data already acquired to model the time dependency in this process.&lt;br /&gt;
&lt;br /&gt;
== Re-implementation of Maczewski model to analytically describe charge diffusion process ==&lt;br /&gt;
The model as it stands today looks like below, which does not accurately describe the data.&lt;br /&gt;
&lt;br /&gt;
[[File:cs-vs-edep.JPG|400px]]&lt;br /&gt;
&lt;br /&gt;
Two shortcomings of the Maczewski model (see [http://arxiv.org/abs/1005.3710 his thesis] and [https://brage.bibsys.no/xmlui/handle/11250/2434108 Even&#039;s MSc thesis]) are that&lt;br /&gt;
# Only one term in the expansion is used (the model was used as in Maczewski&#039;s thesis). I&#039;m not sure how this is  a shortcoming, but Even who modeled this claimed that it could be improved.&lt;br /&gt;
# The Most Probable Value of the Landau distribution of Energy Deposition values in the epitaxial value was considered. This is a more serious approximation, and a new implementation should be made based on Even&#039;s code that rather samples from a Landau distribution.&lt;br /&gt;
&lt;br /&gt;
== PID for DTC ==&lt;br /&gt;
Intuitively, it should be possible to perform a PID (Particle ID) together with the track reconstruction in the DTC. Different particles (w/different charge) should have a different edep distribution in the epitaxial layer, giving rise to depth-dependent cluster size distributions (depth dose) of different values. The height of the plataeu region of the Bragg Curve is then the PID indicator: H, He, C, ...&lt;br /&gt;
This would e.g. be of help during alpha beam tests, where secondary protons from the phantom easily could be removed.&lt;br /&gt;
* Helge wants to further explore this idea and if good make a conference paper on this + the charge diffusion model modeled on the data we already have -- and/or on ALPIDE.&lt;br /&gt;
* Bias voltage dependency..?&lt;br /&gt;
&lt;br /&gt;
== Local-to-Global Monte Carlo simulations for quick MLP ==&lt;br /&gt;
Local-to-Global MC is a method that was introduced in the early 90&#039;s for electron transport simulations for electron radiotherapy treatment planning systems. The idea was to gain speed in MC calculations of the dose distribution. The method is based on simulations of electron transport in local geometries, so-called &amp;quot;kugels&amp;quot;, i.e. &amp;quot;spheres&amp;quot;, of varying material compositions, dimensions and obviously, electron energies. In its simplest form, ignoring secondary particle production, electrons are initiated at the center of a given &amp;quot;kugel&amp;quot;. The electron exit angles, positions and energies, i.e. the exiting electron&#039;s &amp;quot;phase space&amp;quot;, are then tallied. The procedure is repeated for different materials, &amp;quot;kugel&amp;quot; sizes and electron energies. The resulting distributions are stored in memory generating the so-called probability distribution functions. Then, in the global geometry, the electron simulations are accelerated through the use of these &amp;quot;kugels&amp;quot; and the corresponding probability distributions from which random samples are drawn. The method has previously been successfully applied to electron radiotherapy. More on the results and the method itself can be found here https://digital.library.unt.edu/ark:/67531/metadc682086/m2/1/high_res_d/39026.pdf. The Local-to-Global MC methods have, however, been abandoned due to the affordability of powerful CPUs and GPUs.&lt;br /&gt;
&lt;br /&gt;
An important point is, however, that the method could, in principle, be applied to the Most-Likely Path (MLP) estimation in proton CT. &amp;quot;Kugels&amp;quot; of varying materials and sizes can be simulated with varying proton energies to generate probability distributions. These local geometries can then be used to track protons through the patient geometry. An obvious advantage of the method over the more conventional methods would be the possibility of taking into account heterogeneous patient geometries. It will be a tedious step to generate the required probability distributions. However, it would be of utmost interest to implement this idea and compare it to conventional techniques used for the MLP estimations such as those based on log-likelihood maximization.&lt;/div&gt;</summary>
		<author><name>Hpe090</name></author>
	</entry>
	<entry>
		<id>https://pct.wiki.uib.no/index.php?title=WP1_Ideas_for_project_to_pursue&amp;diff=477</id>
		<title>WP1 Ideas for project to pursue</title>
		<link rel="alternate" type="text/html" href="https://pct.wiki.uib.no/index.php?title=WP1_Ideas_for_project_to_pursue&amp;diff=477"/>
		<updated>2017-11-23T07:07:19Z</updated>

		<summary type="html">&lt;p&gt;Hpe090: /* Re-implementation of Maczewski model to analytically describe charge diffusion process */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Below is a list of ideas regarding DTC data analysis, design etc. that might be worthwhile to pursue.&lt;br /&gt;
&lt;br /&gt;
== Time-dependence of charge diffusion process ==&lt;br /&gt;
We see in the ALPIDE chips that the quick integration time of ~10 µs reveals a time dependence on the charge diffusion process -- i.e. that too small clusters, medium clusters and then large clusters with holes are visible. It would be interesting to see if it&#039;s possible to use the data already acquired to model the time dependency in this process.&lt;br /&gt;
&lt;br /&gt;
== Re-implementation of Maczewski model to analytically describe charge diffusion process ==&lt;br /&gt;
The model as it stands today looks like below, which does not accurately describe the data.&lt;br /&gt;
&lt;br /&gt;
[[File:cs-vs-edep.JPG|400px]]&lt;br /&gt;
&lt;br /&gt;
Two shortcomings of the Maczewski model (see [http://arxiv.org/abs/1005.3710 his thesis] and [https://brage.bibsys.no/xmlui/handle/11250/2434108 Even&#039;s MSc thesis]) are that&lt;br /&gt;
# Only one term in the expansion is used (the model was used as in Maczewski&#039;s thesis). I&#039;m not sure how this is  a shortcoming, but Even how modeled this claimed that it could be improved.&lt;br /&gt;
# The Most Probable Value of the Landau distribution of Energy Deposition values in the epitaxial value was considered. This is a more serious approximation, and a new implementation should be made based on Even&#039;s code that rather samples from a Landau distribution.&lt;br /&gt;
&lt;br /&gt;
== PID for DTC ==&lt;br /&gt;
Intuitively, it should be possible to perform a PID (Particle ID) together with the track reconstruction in the DTC. Different particles (w/different charge) should have a different edep distribution in the epitaxial layer, giving rise to depth-dependent cluster size distributions (depth dose) of different values. The height of the plataeu region of the Bragg Curve is then the PID indicator: H, He, C, ...&lt;br /&gt;
This would e.g. be of help during alpha beam tests, where secondary protons from the phantom easily could be removed.&lt;br /&gt;
* Helge wants to further explore this idea and if good make a conference paper on this + the charge diffusion model modeled on the data we already have -- and/or on ALPIDE.&lt;br /&gt;
* Bias voltage dependency..?&lt;br /&gt;
&lt;br /&gt;
== Local-to-Global Monte Carlo simulations for quick MLP ==&lt;br /&gt;
Local-to-Global MC is a method that was introduced in the early 90&#039;s for electron transport simulations for electron radiotherapy treatment planning systems. The idea was to gain speed in MC calculations of the dose distribution. The method is based on simulations of electron transport in local geometries, so-called &amp;quot;kugels&amp;quot;, i.e. &amp;quot;spheres&amp;quot;, of varying material compositions, dimensions and obviously, electron energies. In its simplest form, ignoring secondary particle production, electrons are initiated at the center of a given &amp;quot;kugel&amp;quot;. The electron exit angles, positions and energies, i.e. the exiting electron&#039;s &amp;quot;phase space&amp;quot;, are then tallied. The procedure is repeated for different materials, &amp;quot;kugel&amp;quot; sizes and electron energies. The resulting distributions are stored in memory generating the so-called probability distribution functions. Then, in the global geometry, the electron simulations are accelerated through the use of these &amp;quot;kugels&amp;quot; and the corresponding probability distributions from which random samples are drawn. The method has previously been successfully applied to electron radiotherapy. More on the results and the method itself can be found here https://digital.library.unt.edu/ark:/67531/metadc682086/m2/1/high_res_d/39026.pdf. The Local-to-Global MC methods have, however, been abandoned due to the affordability of powerful CPUs and GPUs.&lt;br /&gt;
&lt;br /&gt;
An important point is, however, that the method could, in principle, be applied to the Most-Likely Path (MLP) estimation in proton CT. &amp;quot;Kugels&amp;quot; of varying materials and sizes can be simulated with varying proton energies to generate probability distributions. These local geometries can then be used to track protons through the patient geometry. An obvious advantage of the method over the more conventional methods would be the possibility of taking into account heterogeneous patient geometries. It will be a tedious step to generate the required probability distributions. However, it would be of utmost interest to implement this idea and compare it to conventional techniques used for the MLP estimations such as those based on log-likelihood maximization.&lt;/div&gt;</summary>
		<author><name>Hpe090</name></author>
	</entry>
	<entry>
		<id>https://pct.wiki.uib.no/index.php?title=WP1_Ideas_for_project_to_pursue&amp;diff=472</id>
		<title>WP1 Ideas for project to pursue</title>
		<link rel="alternate" type="text/html" href="https://pct.wiki.uib.no/index.php?title=WP1_Ideas_for_project_to_pursue&amp;diff=472"/>
		<updated>2017-11-16T08:18:03Z</updated>

		<summary type="html">&lt;p&gt;Hpe090: /* PID for DTC */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Below is a list of ideas regarding DTC data analysis, design etc. that might be worthwhile to pursue.&lt;br /&gt;
&lt;br /&gt;
== Time-dependence of charge diffusion process ==&lt;br /&gt;
We see in the ALPIDE chips that the quick integration time of ~10 µs reveals a time dependence on the charge diffusion process -- i.e. that too small clusters, medium clusters and then large clusters with holes are visible. It would be interesting to see if it&#039;s possible to use the data already acquired to model the time dependency in this process.&lt;br /&gt;
&lt;br /&gt;
== Re-implementation of Maczewski model to analytically describe charge diffusion process ==&lt;br /&gt;
The model as it stands today looks like below, which does not accurately describe the data.&lt;br /&gt;
&lt;br /&gt;
[[File:cs-vs-edep.JPG|400px]]&lt;br /&gt;
&lt;br /&gt;
Two shortcomings of the Maczewski model (see [http://arxiv.org/abs/1005.3710 his thesis] and [https://brage.bibsys.no/xmlui/handle/11250/2434108 Even&#039;s MSc thesis]) are that&lt;br /&gt;
# Only one term in the expansion is used (the model was used as in Maczewski&#039;s thesis)&lt;br /&gt;
# The Most Probable Value of the Landau distribution of Energy Deposition values in the epitaxial value was considered. This is a more serious approximation, and a new implementation should be made based on Even&#039;s code that rather samples from a Landau distribution.&lt;br /&gt;
&lt;br /&gt;
== PID for DTC ==&lt;br /&gt;
Intuitively, it should be possible to perform a PID (Particle ID) together with the track reconstruction in the DTC. Different particles (w/different charge) should have a different edep distribution in the epitaxial layer, giving rise to depth-dependent cluster size distributions (depth dose) of different values. The height of the plataeu region of the Bragg Curve is then the PID indicator: H, He, C, ...&lt;br /&gt;
This would e.g. be of help during alpha beam tests, where secondary protons from the phantom easily could be removed.&lt;br /&gt;
* Helge wants to further explore this idea and if good make a conference paper on this + the charge diffusion model modeled on the data we already have -- and/or on ALPIDE.&lt;br /&gt;
* Bias voltage dependency..?&lt;br /&gt;
&lt;br /&gt;
== Local-to-global Monte Carlo simulations for quick MLP ==&lt;/div&gt;</summary>
		<author><name>Hpe090</name></author>
	</entry>
	<entry>
		<id>https://pct.wiki.uib.no/index.php?title=WP1_Ideas_for_project_to_pursue&amp;diff=471</id>
		<title>WP1 Ideas for project to pursue</title>
		<link rel="alternate" type="text/html" href="https://pct.wiki.uib.no/index.php?title=WP1_Ideas_for_project_to_pursue&amp;diff=471"/>
		<updated>2017-11-16T08:17:05Z</updated>

		<summary type="html">&lt;p&gt;Hpe090: /* Re-implementation of Maczewski model to analytically describe charge diffusion process */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Below is a list of ideas regarding DTC data analysis, design etc. that might be worthwhile to pursue.&lt;br /&gt;
&lt;br /&gt;
== Time-dependence of charge diffusion process ==&lt;br /&gt;
We see in the ALPIDE chips that the quick integration time of ~10 µs reveals a time dependence on the charge diffusion process -- i.e. that too small clusters, medium clusters and then large clusters with holes are visible. It would be interesting to see if it&#039;s possible to use the data already acquired to model the time dependency in this process.&lt;br /&gt;
&lt;br /&gt;
== Re-implementation of Maczewski model to analytically describe charge diffusion process ==&lt;br /&gt;
The model as it stands today looks like below, which does not accurately describe the data.&lt;br /&gt;
&lt;br /&gt;
[[File:cs-vs-edep.JPG|400px]]&lt;br /&gt;
&lt;br /&gt;
Two shortcomings of the Maczewski model (see [http://arxiv.org/abs/1005.3710 his thesis] and [https://brage.bibsys.no/xmlui/handle/11250/2434108 Even&#039;s MSc thesis]) are that&lt;br /&gt;
# Only one term in the expansion is used (the model was used as in Maczewski&#039;s thesis)&lt;br /&gt;
# The Most Probable Value of the Landau distribution of Energy Deposition values in the epitaxial value was considered. This is a more serious approximation, and a new implementation should be made based on Even&#039;s code that rather samples from a Landau distribution.&lt;br /&gt;
&lt;br /&gt;
== PID for DTC ==&lt;br /&gt;
Intuitively, it should be possible to perform a PID (Particle ID) together with the track reconstruction in the DTC. Different particles (w/different charge) should have a different edep distribution in the epitaxial layer, giving rise to depth-dependent cluster size distributions (depth dose) of different values. The height of the plataeu region of the Bragg Curve is then the PID indicator: H, He, C, ...&lt;br /&gt;
This would e.g. be of help during alpha beam tests, where secondary protons from the phantom easily could be removed.&lt;br /&gt;
* Helge wants to further explore this idea and if good make a conference paper on this + the charge diffusion model modeled on the data we already have -- and on ALPIDE.&lt;br /&gt;
* Bias voltage dependency..?&lt;br /&gt;
&lt;br /&gt;
== Local-to-global Monte Carlo simulations for quick MLP ==&lt;/div&gt;</summary>
		<author><name>Hpe090</name></author>
	</entry>
	<entry>
		<id>https://pct.wiki.uib.no/index.php?title=WP1_Ideas_for_project_to_pursue&amp;diff=470</id>
		<title>WP1 Ideas for project to pursue</title>
		<link rel="alternate" type="text/html" href="https://pct.wiki.uib.no/index.php?title=WP1_Ideas_for_project_to_pursue&amp;diff=470"/>
		<updated>2017-11-16T08:16:58Z</updated>

		<summary type="html">&lt;p&gt;Hpe090: Created page with &amp;quot;Below is a list of ideas regarding DTC data analysis, design etc. that might be worthwhile to pursue.  == Time-dependence of charge diffusion process == We see in the ALPIDE c...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Below is a list of ideas regarding DTC data analysis, design etc. that might be worthwhile to pursue.&lt;br /&gt;
&lt;br /&gt;
== Time-dependence of charge diffusion process ==&lt;br /&gt;
We see in the ALPIDE chips that the quick integration time of ~10 µs reveals a time dependence on the charge diffusion process -- i.e. that too small clusters, medium clusters and then large clusters with holes are visible. It would be interesting to see if it&#039;s possible to use the data already acquired to model the time dependency in this process.&lt;br /&gt;
&lt;br /&gt;
== Re-implementation of Maczewski model to analytically describe charge diffusion process ==&lt;br /&gt;
The model as it stands today looks like below, which does not accurately describe the data.&lt;br /&gt;
[[File:cs-vs-edep.JPG|400px]]&lt;br /&gt;
&lt;br /&gt;
Two shortcomings of the Maczewski model (see [http://arxiv.org/abs/1005.3710 his thesis] and [https://brage.bibsys.no/xmlui/handle/11250/2434108 Even&#039;s MSc thesis]) are that&lt;br /&gt;
# Only one term in the expansion is used (the model was used as in Maczewski&#039;s thesis)&lt;br /&gt;
# The Most Probable Value of the Landau distribution of Energy Deposition values in the epitaxial value was considered. This is a more serious approximation, and a new implementation should be made based on Even&#039;s code that rather samples from a Landau distribution.&lt;br /&gt;
&lt;br /&gt;
== PID for DTC ==&lt;br /&gt;
Intuitively, it should be possible to perform a PID (Particle ID) together with the track reconstruction in the DTC. Different particles (w/different charge) should have a different edep distribution in the epitaxial layer, giving rise to depth-dependent cluster size distributions (depth dose) of different values. The height of the plataeu region of the Bragg Curve is then the PID indicator: H, He, C, ...&lt;br /&gt;
This would e.g. be of help during alpha beam tests, where secondary protons from the phantom easily could be removed.&lt;br /&gt;
* Helge wants to further explore this idea and if good make a conference paper on this + the charge diffusion model modeled on the data we already have -- and on ALPIDE.&lt;br /&gt;
* Bias voltage dependency..?&lt;br /&gt;
&lt;br /&gt;
== Local-to-global Monte Carlo simulations for quick MLP ==&lt;/div&gt;</summary>
		<author><name>Hpe090</name></author>
	</entry>
	<entry>
		<id>https://pct.wiki.uib.no/index.php?title=File:Cs-vs-edep.JPG&amp;diff=469</id>
		<title>File:Cs-vs-edep.JPG</title>
		<link rel="alternate" type="text/html" href="https://pct.wiki.uib.no/index.php?title=File:Cs-vs-edep.JPG&amp;diff=469"/>
		<updated>2017-11-16T08:09:30Z</updated>

		<summary type="html">&lt;p&gt;Hpe090: File uploaded with MsUpload&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;File uploaded with MsUpload&lt;/div&gt;</summary>
		<author><name>Hpe090</name></author>
	</entry>
	<entry>
		<id>https://pct.wiki.uib.no/index.php?title=Workpackages&amp;diff=468</id>
		<title>Workpackages</title>
		<link rel="alternate" type="text/html" href="https://pct.wiki.uib.no/index.php?title=Workpackages&amp;diff=468"/>
		<updated>2017-11-16T08:02:49Z</updated>

		<summary type="html">&lt;p&gt;Hpe090: /* WP1: Physics simulation, verification and design optimization */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;ASK link to people responsible for package / sub package? &lt;br /&gt;
&lt;br /&gt;
== [[WP1]]: Physics simulation, verification and design optimization ==&lt;br /&gt;
* Beam scenarios – beam spot, intensity&lt;br /&gt;
* Detector specifications:  [[DTC optimization|Optimization of geometry and segmentation]]&lt;br /&gt;
* Radiation environment - location&lt;br /&gt;
* Evaluation of rates (average/worst case) of the digital backend of the sensor&lt;br /&gt;
* Beam tests of sensors&lt;br /&gt;
* [[WP1 Ideas for project to pursue]]&lt;br /&gt;
&lt;br /&gt;
== [[WP2]]: Chip submission and sensor characterization ==&lt;br /&gt;
* Improved sensor and data encoding design&lt;br /&gt;
* Chip submission&lt;br /&gt;
* Testing of prototypes &lt;br /&gt;
&lt;br /&gt;
== [[WP3]]: Data readout ==&lt;br /&gt;
* Optimisation of the readout electronics architecture&lt;br /&gt;
* SystemC simulation of rates (average/worst case) of the readout chain&lt;br /&gt;
* Development and testing of readout electronics&lt;br /&gt;
* Setting up a full readout chain&lt;br /&gt;
* Development of firmware and software&lt;br /&gt;
&lt;br /&gt;
== [[WP4]]: Online systems ==&lt;br /&gt;
* Hardware infrastructure&lt;br /&gt;
* Software infrastructure&lt;br /&gt;
* DAQ software&lt;br /&gt;
* DCS + Trigger&lt;br /&gt;
* Data quality monitoring&lt;br /&gt;
&lt;br /&gt;
== [[WP5]]: Assembly and System integration ==&lt;br /&gt;
* Assembly of chips into HICs/staves&lt;br /&gt;
* Assembly of staves into layers&lt;br /&gt;
* Integration of layers into a compact detector&lt;br /&gt;
* Mechanical and electrical integration, cooling&lt;br /&gt;
* Electronics and DAQ integration&lt;br /&gt;
&lt;br /&gt;
== [[WP6]]: Commissioning ==&lt;br /&gt;
* Commissioning of the PRM in beams&lt;br /&gt;
* Performance evaluation in a pre-clinical environment, i.e. with phantoms  &lt;br /&gt;
&lt;br /&gt;
== [[WP7]]: Reconstruction software ==&lt;br /&gt;
* Calorimeter response &lt;br /&gt;
* Calorimeter track reconstruction&lt;br /&gt;
* Reconstruction of 3D trajectory – track vector matching&lt;br /&gt;
* 3D stopping power map&lt;/div&gt;</summary>
		<author><name>Hpe090</name></author>
	</entry>
	<entry>
		<id>https://pct.wiki.uib.no/index.php?title=Workpackages&amp;diff=467</id>
		<title>Workpackages</title>
		<link rel="alternate" type="text/html" href="https://pct.wiki.uib.no/index.php?title=Workpackages&amp;diff=467"/>
		<updated>2017-11-16T08:02:41Z</updated>

		<summary type="html">&lt;p&gt;Hpe090: /* WP1: Physics simulation, verification and design optimization */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;ASK link to people responsible for package / sub package? &lt;br /&gt;
&lt;br /&gt;
== [[WP1]]: Physics simulation, verification and design optimization ==&lt;br /&gt;
* Beam scenarios – beam spot, intensity&lt;br /&gt;
* Detector specifications:  [[DTC optimization|Optimization of geometry and segmentation]]&lt;br /&gt;
* Radiation environment - location&lt;br /&gt;
* Evaluation of rates (average/worst case) of the digital backend of the sensor&lt;br /&gt;
* Beam tests of sensors&lt;br /&gt;
* [[Ideas for project to pursue]]&lt;br /&gt;
&lt;br /&gt;
== [[WP2]]: Chip submission and sensor characterization ==&lt;br /&gt;
* Improved sensor and data encoding design&lt;br /&gt;
* Chip submission&lt;br /&gt;
* Testing of prototypes &lt;br /&gt;
&lt;br /&gt;
== [[WP3]]: Data readout ==&lt;br /&gt;
* Optimisation of the readout electronics architecture&lt;br /&gt;
* SystemC simulation of rates (average/worst case) of the readout chain&lt;br /&gt;
* Development and testing of readout electronics&lt;br /&gt;
* Setting up a full readout chain&lt;br /&gt;
* Development of firmware and software&lt;br /&gt;
&lt;br /&gt;
== [[WP4]]: Online systems ==&lt;br /&gt;
* Hardware infrastructure&lt;br /&gt;
* Software infrastructure&lt;br /&gt;
* DAQ software&lt;br /&gt;
* DCS + Trigger&lt;br /&gt;
* Data quality monitoring&lt;br /&gt;
&lt;br /&gt;
== [[WP5]]: Assembly and System integration ==&lt;br /&gt;
* Assembly of chips into HICs/staves&lt;br /&gt;
* Assembly of staves into layers&lt;br /&gt;
* Integration of layers into a compact detector&lt;br /&gt;
* Mechanical and electrical integration, cooling&lt;br /&gt;
* Electronics and DAQ integration&lt;br /&gt;
&lt;br /&gt;
== [[WP6]]: Commissioning ==&lt;br /&gt;
* Commissioning of the PRM in beams&lt;br /&gt;
* Performance evaluation in a pre-clinical environment, i.e. with phantoms  &lt;br /&gt;
&lt;br /&gt;
== [[WP7]]: Reconstruction software ==&lt;br /&gt;
* Calorimeter response &lt;br /&gt;
* Calorimeter track reconstruction&lt;br /&gt;
* Reconstruction of 3D trajectory – track vector matching&lt;br /&gt;
* 3D stopping power map&lt;/div&gt;</summary>
		<author><name>Hpe090</name></author>
	</entry>
	<entry>
		<id>https://pct.wiki.uib.no/index.php?title=Main_Page&amp;diff=466</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://pct.wiki.uib.no/index.php?title=Main_Page&amp;diff=466"/>
		<updated>2017-11-13T13:51:54Z</updated>

		<summary type="html">&lt;p&gt;Hpe090: /* Workpackage Reports */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Wiki for the proton CT project&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== [[Documentation]] ==&lt;br /&gt;
[[Documentation]] on how to install and use the involved software packages, the development workflow, etc.&lt;br /&gt;
&lt;br /&gt;
== [[Publications]] ==&lt;br /&gt;
List of publications from the project.&lt;br /&gt;
&lt;br /&gt;
=== From WP1: ===&lt;br /&gt;
&lt;br /&gt;
==== Workpackage Reports ====&lt;br /&gt;
* [[Media:pCT-WP1-1-Rev2 design recommendations.pdf | pCT-WP1-01-Rev2 Detector design specifications]] (Rev2: Added carrier board thickness recommendations)&lt;br /&gt;
* Under revision (14.Nov) | pCT-WP1-02-Rev1 Radiation environment and placement of electronics (Please feel free to contact [mailto:jars@hvl.no Jarle Rambo Sølie] if there are any questions regarding the contents of this document.&lt;br /&gt;
&lt;br /&gt;
==== Published ====&lt;br /&gt;
&lt;br /&gt;
* Pettersen, H.E.S., J. Alme, A. van den Brink, M. Chaar, D. Fehlker, I. Meric, O.H. Odland, et al. &amp;lt;b&amp;gt;Proton Tracking in a High-Granularity Digital Tracking Calorimeter for Proton CT Purposes&amp;lt;/b&amp;gt;.  Nuclear Instruments and Methods in Physics Research Section A: Accelerators, Spectrometers, Detectors and Associated Equipment 860C, 51–61. doi:10.1016/j.nima.2017.02.007. &lt;br /&gt;
** Published manuscript: [[Media: 1-s2.0-S0168900217301882-main.pdf | PDF]]&lt;br /&gt;
** Elsevier link: [http://www.sciencedirect.com/science/article/pii/S0168900217301882 doi:10.1016/j.nima.2017.02.007]&lt;br /&gt;
** arXiv link: [https://arxiv.org/abs/1611.02031 arXiv:1611.02031]&lt;br /&gt;
&lt;br /&gt;
* Pettersen, H.E.S., Chaar, M., Meric, I., Odland, O.H., Sølie, J., Röhrich, D., n.d. &amp;lt;b&amp;gt;Accuracy of parameterized proton range models; a comparison&amp;lt;/b&amp;gt;. doi:10.1016/j.radphyschem.2017.08.02&lt;br /&gt;
** Published manuscript: [[Media: Comparison of different calculation methods of proton ranges.pdf | PDF]]&lt;br /&gt;
** Elsevier link: [http://www.sciencedirect.com/science/article/pii/S0969806X17303869?via%3Dihub 10.1016/j.radphyschem.2017.08.028]&lt;br /&gt;
** arXiv link: [https://arxiv.org/abs/1704.08854  arXiv:1704.08854]&lt;br /&gt;
&lt;br /&gt;
==== In review ====&lt;br /&gt;
* J. Sølie, H. E. S. Pettersen, I. Meric, O. H. Odland, H. Helstrup and D. Röhrich: &amp;lt;b&amp;gt;A comparison of longitudinal and lateral range for protons traversing complex media using GATE, MCNP6 and FLUKA Monte Carlo simulations&amp;lt;/b&amp;gt;. Submitted to Radiat. Phys. Chem. in conjunction with the [http://conferences.illinois.edu/irrma2017/ IRRMA X] conference.&lt;br /&gt;
** Preliminary manuscript: [[Media: 1708.00668.pdf |PDF]]&lt;br /&gt;
** arXiv link: [https://arxiv.org/abs/1708.00668  arXiv:1708.00668]&lt;br /&gt;
&lt;br /&gt;
==== Under construction ====&lt;br /&gt;
* H. E. S. Pettersen, J. Sølie, I. Meric, D. Röhrich, O. H. Odland, etc.: &amp;lt;b&amp;gt;Design optimization of a digital tracking calorimeter&amp;lt;/b&amp;gt;&lt;br /&gt;
** Preliminary manuscript: [[Media: Design optimization of a digital tracking calorimeter.pdf | PDF]]&lt;br /&gt;
** This paper might be generalized somewhat for publication&lt;br /&gt;
&lt;br /&gt;
== [[Meetings]] ==&lt;br /&gt;
Notes and slides from the project meetings&lt;br /&gt;
&lt;br /&gt;
== [[Workshops]] ==&lt;br /&gt;
Slides from the project [[Workshops | workshops]]&lt;br /&gt;
&lt;br /&gt;
== [[Workpackages]] ==&lt;br /&gt;
Sections for the different work packages&lt;br /&gt;
&lt;br /&gt;
== [[People]] ==&lt;br /&gt;
Contact info of involved people &lt;br /&gt;
&lt;br /&gt;
== [[Links]] ==&lt;br /&gt;
Link collection of topics regarding the project&lt;br /&gt;
&lt;br /&gt;
== Getting started ==&lt;br /&gt;
* Note: ASK is a placeholder that marks questions &lt;br /&gt;
* Note: Search function is not ideal. It doesn&#039;t find all occurences of the search term, e.g. aries finds libraries but not aries.bccs&lt;br /&gt;
&lt;br /&gt;
* Consult the [//meta.wikimedia.org/wiki/Help:Contents User&#039;s Guide] for information on using the wiki software.&lt;br /&gt;
* [//www.mediawiki.org/wiki/Manual:Configuration_settings Configuration settings list]&lt;br /&gt;
* [//www.mediawiki.org/wiki/Manual:FAQ MediaWiki FAQ]&lt;br /&gt;
* [https://lists.wikimedia.org/mailman/listinfo/mediawiki-announce MediaWiki release mailing list]&lt;/div&gt;</summary>
		<author><name>Hpe090</name></author>
	</entry>
	<entry>
		<id>https://pct.wiki.uib.no/index.php?title=Main_Page&amp;diff=465</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://pct.wiki.uib.no/index.php?title=Main_Page&amp;diff=465"/>
		<updated>2017-11-13T13:51:44Z</updated>

		<summary type="html">&lt;p&gt;Hpe090: /* From WP1: */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Wiki for the proton CT project&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== [[Documentation]] ==&lt;br /&gt;
[[Documentation]] on how to install and use the involved software packages, the development workflow, etc.&lt;br /&gt;
&lt;br /&gt;
== [[Publications]] ==&lt;br /&gt;
List of publications from the project.&lt;br /&gt;
&lt;br /&gt;
=== From WP1: ===&lt;br /&gt;
&lt;br /&gt;
==== Workpackage Reports ====&lt;br /&gt;
* [[Media:pCT-WP1-1-Rev2 design recommendations.pdf | pCT-WP1-01-Rev2 Detector design specifications (Rev2: Added carrier board thickness recommendations)]]&lt;br /&gt;
* Under revision (14.Nov) | pCT-WP1-02-Rev1 Radiation environment and placement of electronics (Please feel free to contact [mailto:jars@hvl.no Jarle Rambo Sølie] if there are any questions regarding the contents of this document.&lt;br /&gt;
&lt;br /&gt;
==== Published ====&lt;br /&gt;
&lt;br /&gt;
* Pettersen, H.E.S., J. Alme, A. van den Brink, M. Chaar, D. Fehlker, I. Meric, O.H. Odland, et al. &amp;lt;b&amp;gt;Proton Tracking in a High-Granularity Digital Tracking Calorimeter for Proton CT Purposes&amp;lt;/b&amp;gt;.  Nuclear Instruments and Methods in Physics Research Section A: Accelerators, Spectrometers, Detectors and Associated Equipment 860C, 51–61. doi:10.1016/j.nima.2017.02.007. &lt;br /&gt;
** Published manuscript: [[Media: 1-s2.0-S0168900217301882-main.pdf | PDF]]&lt;br /&gt;
** Elsevier link: [http://www.sciencedirect.com/science/article/pii/S0168900217301882 doi:10.1016/j.nima.2017.02.007]&lt;br /&gt;
** arXiv link: [https://arxiv.org/abs/1611.02031 arXiv:1611.02031]&lt;br /&gt;
&lt;br /&gt;
* Pettersen, H.E.S., Chaar, M., Meric, I., Odland, O.H., Sølie, J., Röhrich, D., n.d. &amp;lt;b&amp;gt;Accuracy of parameterized proton range models; a comparison&amp;lt;/b&amp;gt;. doi:10.1016/j.radphyschem.2017.08.02&lt;br /&gt;
** Published manuscript: [[Media: Comparison of different calculation methods of proton ranges.pdf | PDF]]&lt;br /&gt;
** Elsevier link: [http://www.sciencedirect.com/science/article/pii/S0969806X17303869?via%3Dihub 10.1016/j.radphyschem.2017.08.028]&lt;br /&gt;
** arXiv link: [https://arxiv.org/abs/1704.08854  arXiv:1704.08854]&lt;br /&gt;
&lt;br /&gt;
==== In review ====&lt;br /&gt;
* J. Sølie, H. E. S. Pettersen, I. Meric, O. H. Odland, H. Helstrup and D. Röhrich: &amp;lt;b&amp;gt;A comparison of longitudinal and lateral range for protons traversing complex media using GATE, MCNP6 and FLUKA Monte Carlo simulations&amp;lt;/b&amp;gt;. Submitted to Radiat. Phys. Chem. in conjunction with the [http://conferences.illinois.edu/irrma2017/ IRRMA X] conference.&lt;br /&gt;
** Preliminary manuscript: [[Media: 1708.00668.pdf |PDF]]&lt;br /&gt;
** arXiv link: [https://arxiv.org/abs/1708.00668  arXiv:1708.00668]&lt;br /&gt;
&lt;br /&gt;
==== Under construction ====&lt;br /&gt;
* H. E. S. Pettersen, J. Sølie, I. Meric, D. Röhrich, O. H. Odland, etc.: &amp;lt;b&amp;gt;Design optimization of a digital tracking calorimeter&amp;lt;/b&amp;gt;&lt;br /&gt;
** Preliminary manuscript: [[Media: Design optimization of a digital tracking calorimeter.pdf | PDF]]&lt;br /&gt;
** This paper might be generalized somewhat for publication&lt;br /&gt;
&lt;br /&gt;
== [[Meetings]] ==&lt;br /&gt;
Notes and slides from the project meetings&lt;br /&gt;
&lt;br /&gt;
== [[Workshops]] ==&lt;br /&gt;
Slides from the project [[Workshops | workshops]]&lt;br /&gt;
&lt;br /&gt;
== [[Workpackages]] ==&lt;br /&gt;
Sections for the different work packages&lt;br /&gt;
&lt;br /&gt;
== [[People]] ==&lt;br /&gt;
Contact info of involved people &lt;br /&gt;
&lt;br /&gt;
== [[Links]] ==&lt;br /&gt;
Link collection of topics regarding the project&lt;br /&gt;
&lt;br /&gt;
== Getting started ==&lt;br /&gt;
* Note: ASK is a placeholder that marks questions &lt;br /&gt;
* Note: Search function is not ideal. It doesn&#039;t find all occurences of the search term, e.g. aries finds libraries but not aries.bccs&lt;br /&gt;
&lt;br /&gt;
* Consult the [//meta.wikimedia.org/wiki/Help:Contents User&#039;s Guide] for information on using the wiki software.&lt;br /&gt;
* [//www.mediawiki.org/wiki/Manual:Configuration_settings Configuration settings list]&lt;br /&gt;
* [//www.mediawiki.org/wiki/Manual:FAQ MediaWiki FAQ]&lt;br /&gt;
* [https://lists.wikimedia.org/mailman/listinfo/mediawiki-announce MediaWiki release mailing list]&lt;/div&gt;</summary>
		<author><name>Hpe090</name></author>
	</entry>
	<entry>
		<id>https://pct.wiki.uib.no/index.php?title=File:PCT-WP1-1-Rev2_design_recommendations.pdf&amp;diff=464</id>
		<title>File:PCT-WP1-1-Rev2 design recommendations.pdf</title>
		<link rel="alternate" type="text/html" href="https://pct.wiki.uib.no/index.php?title=File:PCT-WP1-1-Rev2_design_recommendations.pdf&amp;diff=464"/>
		<updated>2017-11-13T13:51:16Z</updated>

		<summary type="html">&lt;p&gt;Hpe090: File uploaded with MsUpload&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;File uploaded with MsUpload&lt;/div&gt;</summary>
		<author><name>Hpe090</name></author>
	</entry>
	<entry>
		<id>https://pct.wiki.uib.no/index.php?title=Workshops&amp;diff=462</id>
		<title>Workshops</title>
		<link rel="alternate" type="text/html" href="https://pct.wiki.uib.no/index.php?title=Workshops&amp;diff=462"/>
		<updated>2017-11-09T09:33:58Z</updated>

		<summary type="html">&lt;p&gt;Hpe090: /* 15.09. in Bergen */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== 2016 ==&lt;br /&gt;
=== 22.11.-23.11. in Bergen ===&lt;br /&gt;
&lt;br /&gt;
Agenda&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Tuesday, 22.11.: Presentations&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
09.00 Bergen pCT – Dieter&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
09.30 Padua pCT – Piero&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
10.00 [[:File:workshop 2016-11 beam test results.pdf | Beam test results with FOCAL prototype - Helge]]&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
11.15 [[:File:workshop 2016-11 MC simulations Helge.pdf | Simulations – Ilker (+ Helge + Jarle)]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
12:00 Software infrastructure – Boris&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
13.30 [[Media:2016-11-22_Pettersen_PCT_reconstruction.pdf | Proton CT reconstruction, Helge E. S. Pettersen]]&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Hardware&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
14.00 Radiation levels - Jarle&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
14.45 Hardware: sensors, mechanical &amp;amp; electrical integration&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
15.15 Readout concept - Haakon&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Wednesday, 23.11.: Hands-on&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
09.00 pCT simulation &amp;amp; pCT reconstruction software&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Minutes: [[:File:pCT_planning_Nov_2016.pdf]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* ASK slides direct here or link to new page&lt;br /&gt;
* [[Media:Imeric_simulation_pCT_workshop_22_11_2016.pdf | Monte Carlo code overview and comparison, Ilker Meric]]&lt;br /&gt;
&lt;br /&gt;
== 2017 ==&lt;br /&gt;
=== 15.09. in Bergen ===&lt;br /&gt;
&lt;br /&gt;
Agenda&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Friday, 15.09.: Presentations&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
09.00 – 09.20 WP5 – Chip integration onto PCBs (D. Röhrich)&lt;br /&gt;
&lt;br /&gt;
09.20 – 10.10 WP1 – [[:File:2017-09-15 workshop Helge Pettersen.pdf | Monte Carlo simulations for the optimization of detector geometry (H. E. S. Pettersen)]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
10.10 – 10.35 WP1 – [[:File:RadiationEnvironment_Electronics.pdf | Monte Carlo simulations of the expected radiation environment, Jarle Rambo Sølie (Slide 17 and 18 contains new &#039;&#039;&#039;flux&#039;&#039;&#039; calculations for the FPGAs)]]&lt;br /&gt;
&lt;br /&gt;
10.30 – 10.40  Break&lt;br /&gt;
&lt;br /&gt;
10.40 – 11.00 WP3 – [[:File:pCT Workshop Presentation - 15 sept 2017.pdf | Initial considerations for the pCT readout (O. Grøttvik) ]]&lt;br /&gt;
&lt;br /&gt;
11.00 – 11.45 WP7 – [[:File:2017-09-15_pctbergen_mlp.pdf | Most likely path (MLP) estimation (M. Richter)]]&lt;br /&gt;
&lt;br /&gt;
11.45 – 12.00 WP5 – Potential cooling schemes (H. Shafiee)&lt;br /&gt;
&lt;br /&gt;
12.00 – 12.30  Lunch break&lt;br /&gt;
&lt;br /&gt;
12.30 – 14.00  WP meetings (Each WP plans activities for the rest of the year)&lt;br /&gt;
&lt;br /&gt;
14.00 – 16.00  Group discussion (meeting back in the bachelor room)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [[:File:WP5, Potential cooling &amp;amp; Heat transfer.pdf | WP5 - Potential cooling schemes &amp;amp; heat transfer, Hesam Shafiee]]&lt;br /&gt;
&lt;br /&gt;
=== 06.11 - 07.11 in Bergen / Meeting with UU ===&lt;br /&gt;
&lt;br /&gt;
Monday, 06.11., room 456, IFT:&lt;br /&gt;
&lt;br /&gt;
09:30 – 10:15  [[:File:Chania_2017_pCT.pdf | General Overview (Dieter)]]&lt;br /&gt;
&lt;br /&gt;
10:15 – 11:15  [[:File:Detector layout specifications.pdf | Detector layout specification (Helge)]]&lt;br /&gt;
&lt;br /&gt;
11:30 – 12:00  [[:File:RadiationEnvironment_06-11.pdf | Radiation environment (Jarle)]]&lt;br /&gt;
&lt;br /&gt;
13:00 – 16:00  Mounting of chips on PCBs&lt;br /&gt;
* [[:File:IB_FPC_DiMauro-R260417.pdf | ITS wire bonding technique ]]&lt;br /&gt;
* [[:File:pCT meeting -LTU-NIKHEF 2017 11 06-7-F.pdf | Alternative technique - tab bonding, chipcable (Ton, Slava, Ihor)]]&lt;br /&gt;
&lt;br /&gt;
Tuesday, 07.11., room 456, IFT:&lt;br /&gt;
&lt;br /&gt;
09:00 – 12:00  Discussions on mechanical aspects of the pCT prototype &lt;br /&gt;
* [[:File:Potential cooling schemes, pCT workshop 2.pdf | Potential Cooling Schemes for the pCT prototype (Hesam)]]&lt;br /&gt;
&lt;br /&gt;
13:00 – 14:00  [[:File:pCT Presentation - 7 nov 2017.pdf | Interface to readout electronic (Ola)]]&lt;br /&gt;
&lt;br /&gt;
14:00 – 16:00  Towards a FoCal prototype&lt;/div&gt;</summary>
		<author><name>Hpe090</name></author>
	</entry>
</feed>