writer Module
Definition of writer protocol and Spyral implementation
SimulationWriter
Bases: Protocol
Protocol class for what methods a simulation writer class should contain.
Methods:
Name | Description |
---|---|
write |
Writes a simulated point cloud to the point cloud file. |
get_directory_name |
Returns directory that point cloud files are written to. |
close |
Closes the writer. |
Source code in src/attpc_engine/detector/writer.py
close()
get_directory_name()
Returns directory that point cloud files are written to.
Returns:
Type | Description |
---|---|
Path
|
The path the output directory |
write(data, labels, config, event_number)
Writes a simulated point cloud to the point cloud file.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
data
|
ndarray
|
An Nx3 array representing the point cloud. Each row is a point, with elements [pad id, time bucket, electrons]. |
required |
labels
|
ndarray
|
A length N array containing labels for points in the pointcloud, indicating which nucleus produced the point. |
required |
config
|
Config
|
The simulation configuration. |
required |
event_number
|
int
|
Event number of simulated event from the kinematics file. |
required |
Source code in src/attpc_engine/detector/writer.py
SpyralWriter
Writer for default Spyral analysis.
Writes the simulated data into multiple files to take advantage of Spyral's multiprocessing.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
directory_path
|
Path
|
Path to directory to store simulated point cloud files. |
required |
config
|
Config
|
The simulation configuration. |
required |
max_events_per_file
|
int
|
The maximum number of events per file. Once this limit is reached, a new file is opened. Default value is 5,000 events. |
5000
|
first_run_number
|
int
|
The starting run number. You can use this to change the starting point for run files (i.e. run_0000 or run_0008) to avoid overwritting previous results. Default is 0 |
0
|
Attributes:
Name | Type | Description |
---|---|---|
directory_path |
Path
|
The path to the directory data will be written to |
response |
ndarray
|
Response of GET electronics. |
max_events_per_file |
int
|
The maximum number of events per file |
run_number |
int
|
Run number of current point cloud file being written to. |
starting_event |
int
|
The first event number of the file currently being written to |
events_written |
int
|
The number of events that have been written |
file |
File
|
h5 file object. It is the actual point cloud file currently being written to. |
cloud_group |
Group
|
"cloud" group in current point cloud file. |
Methods:
Name | Description |
---|---|
write |
Writes a simulated point cloud to the point cloud file. |
get_directory_name |
Returns directory that point cloud files are written to. |
close |
Closes the writer with metadata written |
Source code in src/attpc_engine/detector/writer.py
115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 |
|
close()
Closes the writer with metadata written
Ensures that the event range metadata is recorded
create_next_file()
Creates the next point cloud file
Moves the run number forward and opens a new HDF5 file with the appropriate groups.
Source code in src/attpc_engine/detector/writer.py
get_directory_name()
Returns directory that point cloud files are written to.
Returns:
Type | Description |
---|---|
Path
|
The path to the point cloud directory |
set_number_of_events()
Writes event metadata
Stores first and last event numbers in the attributes
Source code in src/attpc_engine/detector/writer.py
write(data, labels, config, event_number)
Writes a simulated point cloud to the point cloud file.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
data
|
ndarray
|
An Nx3 array representing the point cloud. Each row is a point, with elements [pad id, time bucket, electrons]. |
required |
labels
|
ndarray
|
A length N array of labels indicating which nucleus produced the point in the point cloud. |
required |
config
|
Config
|
The simulation configuration. |
required |
event_number
|
int
|
Event number of simulated event from the kinematics file. |
required |
Source code in src/attpc_engine/detector/writer.py
convert_to_spyral(points, window_edge, mm_edge, length, response, pad_centers, pad_sizes)
Converts a simulated point in the point cloud to Spyral formatting.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
points
|
ndarray
|
An Nx3 array representing the point cloud. Each row is a point, with elements [pad id, time bucket, electrons]. |
required |
window_edge
|
int
|
The windows edge of the detector in time buckets. |
required |
mm_edge
|
int
|
The micromegas edge of the detector in time buckets. |
required |
length
|
float
|
Length of active volume of detector in meters |
required |
response
|
ndarray
|
Response of GET electronics. |
required |
pad_centers
|
ndarray
|
(x, y) coordinates of each pad's center on the pad plane in mm. |
required |
pad_sizes
|
ndarray
|
Contains size of each pad. |
required |
Returns:
Type | Description |
---|---|
ndarray
|
The point cloud |