An open source method of characteristics neutron transport code.
clone.h
Go to the documentation of this file.
1 
9 #include "../DeviceMaterial.h"
10 #include "../DeviceTrack.h"
11 #include <map>
12 
13 void clone_material(Material* material_h, dev_material* material_d);
14 void clone_track(Track* track_h, dev_track* track_d,
15  std::map<int, int> &material_IDs_to_indices);
A dev_track represents a characteristic line across the geometry.
Definition: DeviceTrack.h:43
The Material class represents a unique material and its relevant nuclear data (i.e., multigroup cross-sections) for neutron transport.
Definition: Material.h:51
A Material&#39;s nuclear data to be stored on a GPU.
Definition: DeviceMaterial.h:22
A Track represents a characteristic line across the geometry.
Definition: Track.h:67