VMC Examples Version 6.6
Loading...
Searching...
No Matches
FastSimulation.h
Go to the documentation of this file.
1#ifndef GARFIELD_FAST_SIMULATION_H
2#define GARFIELD_FAST_SIMULATION_H
3
4//------------------------------------------------
5// The Virtual Monte Carlo examples
6// Copyright (C) 2007 - 2016 Ivana Hrivnacova
7// All rights reserved.
8//
9// For the licensing terms see geant4_vmc/LICENSE.
10// Contact: root-vmc@cern.ch
11//-------------------------------------------------
12
13/// \file ExGarfield/geant4/include/FastSimulation.h
14/// \brief Definition of the ExGarfield::FastSimulation class
15///
16/// ExGarfield garfieldpp example adapted to Virtual Monte Carlo.
17///
18/// \date 28/10/2015
19/// \author I. Hrivnacova; IPN, Orsay
20
21#include "TG4VUserFastSimulation.h"
22
24
25namespace VMC
26{
27namespace ExGarfield
28{
29
30/// \ingroup ExGarfield
31/// \brief Special class for definition of fast simulation models
32///
33/// \author I. Hrivnacova; IPN, Orsay
34
36{
37 public:
39 virtual ~FastSimulation();
40
41 // methods
42 virtual void Construct();
43
44 private:
46};
47
48} // namespace ExGarfield
49} // namespace VMC
50
51#endif // GFLASH_FAST_SIMULATION_H
Special class for definition of fast simulation models.