Geant4 Cross Reference

Cross-Referencing   Geant4
Geant4/examples/advanced/stim_pixe_tomography/scripts/Concatenate_BinToStd_GammaAtCreation_fabricate.C

Version: [ ReleaseNotes ] [ 1.0 ] [ 1.1 ] [ 2.0 ] [ 3.0 ] [ 3.1 ] [ 3.2 ] [ 4.0 ] [ 4.0.p1 ] [ 4.0.p2 ] [ 4.1 ] [ 4.1.p1 ] [ 5.0 ] [ 5.0.p1 ] [ 5.1 ] [ 5.1.p1 ] [ 5.2 ] [ 5.2.p1 ] [ 5.2.p2 ] [ 6.0 ] [ 6.0.p1 ] [ 6.1 ] [ 6.2 ] [ 6.2.p1 ] [ 6.2.p2 ] [ 7.0 ] [ 7.0.p1 ] [ 7.1 ] [ 7.1.p1 ] [ 8.0 ] [ 8.0.p1 ] [ 8.1 ] [ 8.1.p1 ] [ 8.1.p2 ] [ 8.2 ] [ 8.2.p1 ] [ 8.3 ] [ 8.3.p1 ] [ 8.3.p2 ] [ 9.0 ] [ 9.0.p1 ] [ 9.0.p2 ] [ 9.1 ] [ 9.1.p1 ] [ 9.1.p2 ] [ 9.1.p3 ] [ 9.2 ] [ 9.2.p1 ] [ 9.2.p2 ] [ 9.2.p3 ] [ 9.2.p4 ] [ 9.3 ] [ 9.3.p1 ] [ 9.3.p2 ] [ 9.4 ] [ 9.4.p1 ] [ 9.4.p2 ] [ 9.4.p3 ] [ 9.4.p4 ] [ 9.5 ] [ 9.5.p1 ] [ 9.5.p2 ] [ 9.6 ] [ 9.6.p1 ] [ 9.6.p2 ] [ 9.6.p3 ] [ 9.6.p4 ] [ 10.0 ] [ 10.0.p1 ] [ 10.0.p2 ] [ 10.0.p3 ] [ 10.0.p4 ] [ 10.1 ] [ 10.1.p1 ] [ 10.1.p2 ] [ 10.1.p3 ] [ 10.2 ] [ 10.2.p1 ] [ 10.2.p2 ] [ 10.2.p3 ] [ 10.3 ] [ 10.3.p1 ] [ 10.3.p2 ] [ 10.3.p3 ] [ 10.4 ] [ 10.4.p1 ] [ 10.4.p2 ] [ 10.4.p3 ] [ 10.5 ] [ 10.5.p1 ] [ 10.6 ] [ 10.6.p1 ] [ 10.6.p2 ] [ 10.6.p3 ] [ 10.7 ] [ 10.7.p1 ] [ 10.7.p2 ] [ 10.7.p3 ] [ 10.7.p4 ] [ 11.0 ] [ 11.0.p1 ] [ 11.0.p2 ] [ 11.0.p3, ] [ 11.0.p4 ] [ 11.1 ] [ 11.1.1 ] [ 11.1.2 ] [ 11.1.3 ] [ 11.2 ] [ 11.2.1 ] [ 11.2.2 ] [ 11.3.0 ]

  1 //***********************************************************************************************************
  2 //     Concatenate_BinToStd_GammaAtCreation_fabricate.C
  3 // Root command file
  4 // Use it by typing in the command line of Root terminal: root
  5 // Concatenate_BinToStd_GammaAtCreation_fabricate.C
  6 //
  7 //
  8 //
  9 // More information is available in UserGuide
 10 // Created by Z.LI LP2i Bordeaux 2022
 11 //***********************************************************************************************************
 12 
 13 #include <math.h>
 14 #include <stdint.h>
 15 #include <stdio.h>
 16 #include <string.h>
 17 
 18 #include <vector>
 19 // using namespace std;
 20 
 21 #define PI 3.14159265f
 22 
 23 // Define a structure to read and write each event in the required binary format
 24 struct PixeEvent
 25 {
 26   uint16_t energy_10eV;
 27   uint16_t pixelIndex;
 28   uint16_t sliceIndex;
 29   uint8_t projectionIndex;
 30 };
 31 struct ParticleInfo
 32 {
 33   float energy_keV;
 34   float mx;
 35   float my;
 36   float mz;
 37 };
 38 struct RunInfo
 39 {
 40   // uint_16t
 41   uint8_t projectionIndex;  // 1 byte
 42   uint16_t sliceIndex;  //
 43   uint16_t pixelIndex;
 44   uint32_t nbParticle;  // 4 bytes int
 45 };
 46 
 47 double DegreeToRadian(double degree)
 48 {
 49   return (PI * degree / 180.);
 50 }
 51 
 52 struct Point
 53 {
 54   double m_x;
 55   double m_y;
 56   double m_z;
 57 };
 58 bool IsDetected(Point poi1, Point poi2, double theta)
 59 {
 60   double a = (poi1.m_x * poi2.m_x + poi1.m_y * poi2.m_y + poi1.m_z * poi2.m_z)
 61              / sqrt(poi1.m_x * poi1.m_x + poi1.m_y * poi1.m_y + poi1.m_z * poi1.m_z)
 62              / sqrt(poi2.m_x * poi2.m_x + poi2.m_y * poi2.m_y + poi2.m_z * poi2.m_z);
 63   if (a > 1.0) a = 1;
 64   if (a < -1.0) a = -1;
 65   double r = acos(a);
 66   if (r > theta)
 67     return false;
 68   else
 69     return true;
 70 }
 71 
 72 void Concatenate_BinToStd_GammaAtCreation_fabricate()
 73 {
 74   //***********************************************************************
 75   //**************************Detection parameters (begin)*****************
 76   //***********************************************************************
 77 
 78   const int nbProjection = 100;
 79   const int nbSlice = 1;
 80   const int nbPixel = 128;
 81   double totalAngleSpan = 180.;  // in degree
 82 
 83   double angleOfDetector =
 84     135.;  // angle of detector relative to the incident direction of the primary protons //
 85   double distanceObjectDetector = 22.;  // 22 mm
 86   double radiusOfDetector = 5.;  // 5 mm
 87   // double theta = atan(radiusOfDetector/distanceObjectDetector); //half apex angle of the right
 88   // circular cone in radian double theta = 14.726*TMath::DegToRad();    // in radian
 89   double theta = 70 * TMath::DegToRad();  // in radian
 90   // double theta = 70*TMath::DegToRad();    // in radian
 91   // double theta = DegreeToRadian(70);
 92 
 93   int P_interrupt = 1;  // Projection of interruption
 94 
 95   //***********************************************************************
 96   //**************************Detection parameters (end)*******************
 97   //***********************************************************************
 98 
 99   // assuming there is one interruption
100   FILE* input1 = fopen("../RT7_GDP_1Projs_1Slice_128Pixels_2000000_4MeV/GammaAtCreation.dat", "rb");
101   FILE* out =
102     fopen("../RT7_GDP_1Projs_1Slice_128Pixels_2000000_4MeV/PixeEvent_std_AtCreation.DAT", "wb");
103   // FILE* temp;
104   // temp =fopen("temp.DAT","wb");
105 
106   if (input1 == NULL) {
107     printf("error for opening the input GammaAtCreation.dat file\n");
108     return;
109   }
110 
111   RunInfo runInfo;
112   PixeEvent pixeEvent;
113   Point centerOfDetector;
114   Point gammaMomentum;
115   long long count1 = 0;
116   long long count2 = 0;
117   int runID = -1;  // index of simulations, namely runID, starting from 0
118   std::vector<PixeEvent> eventVec;
119 
120   // ************************************************************(begin)
121   // **********************READ FIRST FILE***********************
122   // ************************************************************
123   while (fread(&runInfo, sizeof(RunInfo), 1, input1)) {
124     runID++;
125     runInfo.projectionIndex = runID / (nbSlice * nbPixel);
126     int remain = runID % (nbSlice * nbPixel);
127     runInfo.sliceIndex = remain / nbPixel;
128     runInfo.pixelIndex = remain % nbPixel;
129     if (runInfo.projectionIndex == P_interrupt) {
130       runID--;
131       break;
132     }
133 
134     int nbParticle = runInfo.nbParticle;
135 
136     std::vector<ParticleInfo> gammaAtCreation(nbParticle);
137     fread(&gammaAtCreation[0], sizeof(ParticleInfo), nbParticle, input1);
138 
139     //***********************************************************************
140     //**************************Print information (begin)********************
141     //***********************************************************************
142 
143     // printf("-1--runId %d, ProjectionIndex=%d, SliceIndex=%d, PixelIndex=%d, nbParticle =
144     // %d\n",runID, runInfo.projectionIndex, runInfo.sliceIndex, runInfo.pixelIndex, nbParticle);
145 
146     //***********************************************************************
147     //**************************Print information (end)**********************
148     //***********************************************************************
149 
150     // angleOfDetector+totalAngleSpan/nbProjection*runInfo.projectionIndex means the angle between
151     // source direction and detector, which should be constant when source is rotating
152     double ra =
153       DegreeToRadian(angleOfDetector + totalAngleSpan / nbProjection * runInfo.projectionIndex);
154     centerOfDetector.m_x = distanceObjectDetector * cos(ra);
155     centerOfDetector.m_y = distanceObjectDetector * sin(ra);
156     centerOfDetector.m_z = 0;
157 
158     for (int i = 0; i < nbParticle; ++i) {
159       // gamma selection: energy should be lower than 4095*10eV = 49.45 keV
160       if (gammaAtCreation[i].energy_keV >= 40.95 || gammaAtCreation[i].energy_keV <= 0.9)
161         continue;  // gamma selection
162 
163       gammaMomentum.m_x = gammaAtCreation[i].mx;
164       gammaMomentum.m_y = gammaAtCreation[i].my;
165       gammaMomentum.m_z = gammaAtCreation[i].mz;
166 
167       if (!IsDetected(centerOfDetector, gammaMomentum, theta))
168         continue;
169       else {
170         pixeEvent.energy_10eV = floor(100 * gammaAtCreation[i].energy_keV + 0.5);
171         pixeEvent.projectionIndex = runInfo.projectionIndex;
172         pixeEvent.sliceIndex = runInfo.sliceIndex;
173         pixeEvent.pixelIndex = runInfo.pixelIndex;
174 
175         eventVec.push_back(pixeEvent);
176         // fwrite(&pixeEvent, 7, 1, temp);
177         // fwrite(&pixeEvent, 7, 1, out);
178         count1++;
179       }
180     }
181   }
182   printf("---------------Number of PixeEvent in the first file: %lld------------------------\n",
183          count1);
184   fclose(input1);
185   // fclose(temp);
186 
187   // ************************************************************(end)
188   // **********************READ FIRST FILE***********************
189   // ************************************************************
190 
191   PixeEvent pp;
192   PixeEvent p;
193 
194   for (int i = 0; i < nbProjection; ++i) {
195     int size = eventVec.size();
196     for (int j = 0; j < size; ++j) {
197       p = eventVec[j];
198       pp.energy_10eV = p.energy_10eV;
199       pp.projectionIndex = p.projectionIndex + i;
200       pp.sliceIndex = p.sliceIndex;  // index of slices should be reset, starting from 0
201       pp.pixelIndex = p.pixelIndex;
202       pp.pixelIndex = p.pixelIndex;
203       // printf("__ProjectionIndex=%d, SliceIndex=%d, PixelIndex=%d, Energy_10eV=%d\n",
204       // pp.projectionIndex, pp.sliceIndex, pp.pixelIndex, pp.energy_10eV);
205       fwrite(&pp, 7, 1, out);
206     }
207   }
208 
209   // fclose(temp);
210   fclose(out);
211 
212   // Recheck the output file in case
213   FILE* input2 =
214     fopen("../RT7_GDP_1Projs_1Slice_128Pixels_2000000_4MeV/PixeEvent_std_AtCreation.DAT", "rb");
215   PixeEvent ppp;
216   int proj = -1;
217   while (fread(&ppp, 7, 1, input2)) {
218     if (ppp.projectionIndex != proj) {
219       printf("__ProjectionIndex=%d\n", ppp.projectionIndex);
220       proj = ppp.projectionIndex;
221     }
222     // printf("__ProjectionIndex=%d, SliceIndex=%d, PixelIndex=%d, Energy_10eV=%d\n",
223     // ppp.projectionIndex, ppp.sliceIndex, ppp.pixelIndex, ppp.energy_10eV);
224   }
225   fclose(input2);
226 }
227