Fork me on GitHub

source: svn/trunk/external/Hector/H_Marker.h@ 1365

Last change on this file since 1365 was 1365, checked in by Pavel Demin, 10 years ago

switch to a more stable Hector version

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id Revision Date
File size: 1.2 KB
RevLine 
[1360]1#ifndef _H_Marker_
2#define _H_Marker_
3
[1365]4/*
5---- Hector the simulator ----
6 A fast simulator of particles through generic beamlines.
7 J. de Favereau, X. Rouby ~~~ hector_devel@cp3.phys.ucl.ac.be
[1360]8
[1365]9 http://www.fynu.ucl.ac.be/hector.html
10
11 Centre de Physique des Particules et de Phénoménologie (CP3)
12 Université Catholique de Louvain (UCL)
13*/
14
[1360]15/// \file H_Marker.h
16/// \brief Class defining a marker in the beamline (e.g. for interaction point)
17
18// local includes
[1365]19#include "H_OpticalElement.h"
[1360]20
21/// \brief Class defining a marker in the beamline (e.g. for interaction point)
[1365]22class H_Marker : public H_OpticalElement {
[1360]23
24 public:
25 /// Constructors and destructor
26 //@{
[1365]27 H_Marker():H_OpticalElement(MARKER,0.,0.,0.) {init();}
28 H_Marker(const double s):H_OpticalElement(MARKER,s,0.,0.){init();}
29 H_Marker(const string nameE, const double s):H_OpticalElement(nameE,MARKER,s,0.,0.){init();}
30 ~H_Marker() { return; };
[1360]31 //@}
[1365]32 virtual void printProperties() const;
[1360]33 void init();
34
35 private:
36 virtual void setTypeString() {typestring = MARKERNAME;};
[1365]37 virtual void setMatrix(const float , const float, const float) const ;
[1360]38};
39
40#endif
Note: See TracBrowser for help on using the repository browser.