CMS 3D CMS Logo

OptOPlateSplitter.h
Go to the documentation of this file.
1 // COCOA class header file
2 //Id: OptOPlateSplitter.h
3 //CAT: Model
4 //
5 // Base class to describe Optical Objects of type sensor 2D
6 //
7 // History: v1.0
8 // Pedro Arce
9 
10 #ifndef _OPTOPLATESPLITTER_HH
11 #define _OPTOPLATESPLITTER_HH
12 
15 class Measurement;
16 class LightRay;
17 
19 public:
20  //---------- Constructors / Destructor
23  : OpticalObject(parent, type, name, copy_data){};
24  ~OptOPlateSplitter() override{};
25 
26  //---------- Detailed simulation of deviation of the light ray (reflection, shift, ...)
27  void detailedDeviatesLightRay(LightRay& lightray) override;
28  //---------- Detailed simulation of the light ray traversing
29  void detailedTraversesLightRay(LightRay& lightray) override;
30  //---------- Fast simulation of deviation of the light ray (reflection, shift, ...)
31  void fastDeviatesLightRay(LightRay& lightray) override;
32  //---------- Fast simulation of the light ray traversing
33  void fastTraversesLightRay(LightRay& lightray) override;
34 
35 #ifdef COCOA_VIS
36  virtual void fillIguana();
37 #endif
38  void constructSolidShape() override;
39 };
40 
41 #endif
~OptOPlateSplitter() override
const ALIstring & name() const
Definition: OpticalObject.h:58
void detailedDeviatesLightRay(LightRay &lightray) override
bool ALIbool
Definition: CocoaGlobals.h:19
void detailedTraversesLightRay(LightRay &lightray) override
virtual void fillIguana()
Definition: OpticalObject.h:55
void fastTraversesLightRay(LightRay &lightray) override
std::string ALIstring
Definition: CocoaGlobals.h:9
const OpticalObject * parent() const
Definition: OpticalObject.h:60
void constructSolidShape() override
void fastDeviatesLightRay(LightRay &lightray) override
OptOPlateSplitter(OpticalObject *parent, const ALIstring &type, const ALIstring &name, const ALIbool copy_data)