Loading...
Searching...
No Matches
Par04MLFastSimModel.hh
Go to the documentation of this file.
1//
2// ********************************************************************
3// * License and Disclaimer *
4// * *
5// * The Geant4 software is copyright of the Copyright Holders of *
6// * the Geant4 Collaboration. It is provided under the terms and *
7// * conditions of the Geant4 Software License, included in the file *
8// * LICENSE and available at http://cern.ch/geant4/license . These *
9// * include a list of copyright holders. *
10// * *
11// * Neither the authors of this software system, nor their employing *
12// * institutes,nor the agencies providing financial support for this *
13// * work make any representation or warranty, express or implied, *
14// * regarding this software system or assume any liability for its *
15// * use. Please see the license in the file LICENSE and URL above *
16// * for the full disclaimer and the limitation of liability. *
17// * *
18// * This code implementation is the result of the scientific and *
19// * technical work of the GEANT4 collaboration. *
20// * By using, copying, modifying or distributing the software (or *
21// * any work based on the software) you agree to acknowledge its *
22// * use in resulting scientific publications, and indicate your *
23// * acceptance of all terms of the Geant4 Software license. *
24// ********************************************************************
25//
26#ifdef USE_INFERENCE
27#ifndef PAR04MLFASTSIMMODEL_HH
28#define PAR04MLFASTSIMMODEL_HH
29
30#include <G4String.hh> // for G4String
31#include <G4ThreeVector.hh> // for G4ThreeVector
32#include <G4Types.hh> // for G4bool, G4double
33#include <memory> // for unique_ptr
34#include <vector> // for vector
35#include "G4VFastSimulationModel.hh" // for G4VFastSimulationModel
37class G4FastStep;
38class G4FastHit;
39class G4FastTrack;
41class G4Region;
43
44/**
45 * @brief Inference for the fast simulation model.
46 *
47 * Parametrisation of electrons, positrons, and gammas. Energy is deposited and
48 * distributed according to ML inference. This class is only a shell that
49 * triggers the inference, asks for values, and deposits energies at
50 * given positions.
51 *
52 **/
53
55{
56 public:
60 /// There are no kinematics constraints. True is returned.
61 virtual G4bool ModelTrigger(const G4FastTrack&) final;
62 /// Model is applicable to electrons, positrons, and photons.
63 virtual G4bool IsApplicable(const G4ParticleDefinition&) final;
64 /// Take particle out of the full simulation (kill it at the entrance
65 /// depositing all the energy). Calculate energy deposited in the detector
66 /// from the NN model inference.
67 virtual void DoIt(const G4FastTrack&, G4FastStep&) final;
68
69 private:
70 /// Inference model that is NN aware
71 Par04InferenceSetup* fInference;
72 /// Inference model that is NN aware
73 /// Helper class for creation of hits within the sensitive detector
74 std::unique_ptr<G4FastSimHitMaker> fHitMaker;
75 std::unique_ptr<G4FastSimHitMaker> fParallelHitMaker;
76 /// Vector of energy values
77 std::vector<G4double> fEnergies;
78 /// Vector of positions corresponding to energy values (const for one NN
79 /// model)
80 std::vector<G4ThreeVector> fPositions;
81};
82#endif /* PAR04INFERENCEMODEL_HH */
83#endif

Applications | User Support | Publications | Collaboration