CMS 3D CMS Logo

Classes | Public Types | Public Member Functions | Static Public Member Functions | Private Attributes

Crystal Class Reference

#include <Crystal.h>

List of all members.

Classes

class  crystalEqual

Public Types

typedef ROOT::Math::Plane3D Plane3D
typedef math::XYZVector XYZPoint
typedef math::XYZVector XYZVector

Public Member Functions

 Crystal ()
 Empty constructor.
 Crystal (const DetId &cell, const BaseCrystal *bc=0)
 constructor from DetId
CrystalNeighbourcrystalNeighbour (unsigned iq)
 Direct acces to the iq-th neighbour.
const XYZVectorexitingNormal (const CaloDirection &side) const
 normal exiting vector for the surface
const XYZVectorgetAxis () const
 get crystal axis
const XYZPointgetBackCenter () const
 get front center
const Plane3DgetBackPlane () const
 back plane
void getBackSide (std::vector< XYZPoint > &corners) const
void getBackSide (XYZPoint &a, XYZPoint &b, XYZPoint &c, XYZPoint &d) const
 Coordinates of the back side.
const XYZPointgetCenter () const
 get 1/8*(Sum of corners)
const XYZPointgetCorner (unsigned i) const
 get the i-th corner
const DetIdgetDetId () const
 get the DetId
void getDrawingCoordinates (std::vector< float > &x, std::vector< float > &y, std::vector< float > &z) const
 for debugging.
const XYZVectorgetFifthEdge () const
 Direction of the fifth edge.
const XYZVectorgetFirstEdge () const
 Direction of the first edge.
const XYZPointgetFrontCenter () const
 get front center
const Plane3DgetFrontPlane () const
 front plane
void getFrontSide (XYZPoint &a, XYZPoint &b, XYZPoint &c, XYZPoint &d) const
 coordinates of the front side
void getFrontSide (std::vector< XYZPoint > &corners) const
const XYZVectorgetLateralEdge (unsigned i) const
 lateral directions
void getLateralEdges (unsigned i, XYZPoint &a, XYZPoint &b) const
 get the lateral edges
const Plane3DgetLateralPlane (unsigned i) const
 lateral planes
void getLateralSide (unsigned i, XYZPoint &a, XYZPoint &b, XYZPoint &c, XYZPoint &d) const
 Coordinates of the i=th lateral side.
void getLateralSide (unsigned i, std::vector< XYZPoint > &corners) const
const Plane3DgetPlane (const CaloDirection &side) const
 generic access
void getSide (const CaloDirection &side, XYZPoint &a, XYZPoint &b, XYZPoint &c, XYZPoint &d) const
 generic access
void getSide (const CaloDirection &side, std::vector< XYZPoint > &corners) const
const int getSubdetNumber () const
 get the subdector
double getX0Back () const
 get the X0back
unsigned number () const
 get the number of the crystal
void print () const
void setNumber (unsigned n)
 it might be useful to have a number assigned to the crystal
void setX0Back (double val)
 set X0back (it depends on the choosen origin, it isn't purely geometrical)
 ~Crystal ()

Static Public Member Functions

static unsigned oppositeDirection (unsigned iside)

Private Attributes

DetId cellid_
const BaseCrystalmyCrystal_
std::vector< CrystalNeighbourneighbours_
unsigned number_
double X0back_

Detailed Description

Definition at line 20 of file Crystal.h.


Member Typedef Documentation

Definition at line 27 of file Crystal.h.

Definition at line 26 of file Crystal.h.

Definition at line 25 of file Crystal.h.


Constructor & Destructor Documentation

Crystal::Crystal ( ) [inline]

Empty constructor.

Definition at line 32 of file Crystal.h.

{;};
Crystal::Crystal ( const DetId cell,
const BaseCrystal bc = 0 
)

constructor from DetId

Definition at line 4 of file Crystal.cc.

References neighbours_.

                                                           :cellid_(cell),myCrystal_(xtal)
{
  neighbours_.resize(8);
}
Crystal::~Crystal ( ) [inline]

Definition at line 113 of file Crystal.h.

{;};

Member Function Documentation

CrystalNeighbour& Crystal::crystalNeighbour ( unsigned  iq) [inline]

Direct acces to the iq-th neighbour.

Definition at line 102 of file Crystal.h.

References neighbours_.

{ return  neighbours_[iq];}
const XYZVector& Crystal::exitingNormal ( const CaloDirection side) const [inline]

normal exiting vector for the surface

Definition at line 84 of file Crystal.h.

References BaseCrystal::exitingNormal(), and myCrystal_.

{return myCrystal_->exitingNormal(side);}
const XYZVector& Crystal::getAxis ( ) const [inline]

get crystal axis

Definition at line 105 of file Crystal.h.

References BaseCrystal::getAxis(), and myCrystal_.

{ return myCrystal_->getAxis();}
const XYZPoint& Crystal::getBackCenter ( ) const [inline]

get front center

Definition at line 43 of file Crystal.h.

References BaseCrystal::getBackCenter(), and myCrystal_.

const Plane3D& Crystal::getBackPlane ( ) const [inline]

back plane

Definition at line 74 of file Crystal.h.

References BaseCrystal::getBackPlane(), and myCrystal_.

{return myCrystal_->getBackPlane();}
void Crystal::getBackSide ( XYZPoint a,
XYZPoint b,
XYZPoint c,
XYZPoint d 
) const [inline]

Coordinates of the back side.

Definition at line 59 of file Crystal.h.

References BaseCrystal::getBackSide(), and myCrystal_.

void Crystal::getBackSide ( std::vector< XYZPoint > &  corners) const [inline]

Definition at line 60 of file Crystal.h.

References BaseCrystal::getBackSide(), and myCrystal_.

{myCrystal_->getBackSide(corners);}
const XYZPoint& Crystal::getCenter ( ) const [inline]

get 1/8*(Sum of corners)

Definition at line 39 of file Crystal.h.

References BaseCrystal::getCenter(), and myCrystal_.

{return myCrystal_->getCenter();};
const XYZPoint& Crystal::getCorner ( unsigned  i) const [inline]

get the i-th corner

Definition at line 37 of file Crystal.h.

References BaseCrystal::getCorner(), and myCrystal_.

{ return myCrystal_->getCorner(i);};
const DetId& Crystal::getDetId ( void  ) const [inline]

get the DetId

Definition at line 49 of file Crystal.h.

References cellid_.

Referenced by EcalHitMaker::EcalHitMaker(), and Crystal::crystalEqual::operator()().

{return cellid_;};
void Crystal::getDrawingCoordinates ( std::vector< float > &  x,
std::vector< float > &  y,
std::vector< float > &  z 
) const [inline]

for debugging.

Definition at line 89 of file Crystal.h.

References BaseCrystal::getDrawingCoordinates(), and myCrystal_.

const XYZVector& Crystal::getFifthEdge ( ) const [inline]

Direction of the fifth edge.

Definition at line 47 of file Crystal.h.

References BaseCrystal::getFifthEdge(), and myCrystal_.

{return myCrystal_->getFifthEdge();}
const XYZVector& Crystal::getFirstEdge ( ) const [inline]

Direction of the first edge.

Definition at line 45 of file Crystal.h.

References BaseCrystal::getFirstEdge(), and myCrystal_.

Referenced by EcalHitMaker::getPads().

{return  myCrystal_->getFirstEdge();}
const XYZPoint& Crystal::getFrontCenter ( ) const [inline]

get front center

Definition at line 41 of file Crystal.h.

References BaseCrystal::getFrontCenter(), and myCrystal_.

{return myCrystal_->getFrontCenter();};
const Plane3D& Crystal::getFrontPlane ( ) const [inline]

front plane

Definition at line 72 of file Crystal.h.

References BaseCrystal::getFrontPlane(), and myCrystal_.

void Crystal::getFrontSide ( XYZPoint a,
XYZPoint b,
XYZPoint c,
XYZPoint d 
) const [inline]

coordinates of the front side

Definition at line 56 of file Crystal.h.

References BaseCrystal::getFrontSide(), and myCrystal_.

void Crystal::getFrontSide ( std::vector< XYZPoint > &  corners) const [inline]

Definition at line 57 of file Crystal.h.

References BaseCrystal::getFrontSide(), and myCrystal_.

{myCrystal_->getFrontSide(corners);}
const XYZVector& Crystal::getLateralEdge ( unsigned  i) const [inline]

lateral directions

Definition at line 81 of file Crystal.h.

References BaseCrystal::getLateralEdge(), and myCrystal_.

void Crystal::getLateralEdges ( unsigned  i,
XYZPoint a,
XYZPoint b 
) const [inline]

get the lateral edges

Definition at line 54 of file Crystal.h.

References BaseCrystal::getLateralEdges(), and myCrystal_.

const Plane3D& Crystal::getLateralPlane ( unsigned  i) const [inline]

lateral planes

Definition at line 76 of file Crystal.h.

References BaseCrystal::getLateralPlane(), and myCrystal_.

void Crystal::getLateralSide ( unsigned  i,
std::vector< XYZPoint > &  corners 
) const [inline]

Definition at line 63 of file Crystal.h.

References BaseCrystal::getLateralSide(), and myCrystal_.

void Crystal::getLateralSide ( unsigned  i,
XYZPoint a,
XYZPoint b,
XYZPoint c,
XYZPoint d 
) const [inline]

Coordinates of the i=th lateral side.

Definition at line 62 of file Crystal.h.

References BaseCrystal::getLateralSide(), and myCrystal_.

const Plane3D& Crystal::getPlane ( const CaloDirection side) const [inline]

generic access

Definition at line 78 of file Crystal.h.

References BaseCrystal::getPlane(), and myCrystal_.

{ return myCrystal_->getPlane(side);}
void Crystal::getSide ( const CaloDirection side,
std::vector< XYZPoint > &  corners 
) const [inline]

Definition at line 67 of file Crystal.h.

References BaseCrystal::getSide(), and myCrystal_.

  {myCrystal_->getSide(side,corners);}
void Crystal::getSide ( const CaloDirection side,
XYZPoint a,
XYZPoint b,
XYZPoint c,
XYZPoint d 
) const [inline]

generic access

Definition at line 65 of file Crystal.h.

References BaseCrystal::getSide(), and myCrystal_.

  {myCrystal_->getSide(side,a,b,c,d);}
const int Crystal::getSubdetNumber ( ) const [inline]

get the subdector

Definition at line 51 of file Crystal.h.

References BaseCrystal::getSubdetNumber(), and myCrystal_.

double Crystal::getX0Back ( ) const [inline]

get the X0back

Definition at line 111 of file Crystal.h.

References X0back_.

{ return X0back_;}
unsigned Crystal::number ( ) const [inline]

get the number of the crystal

Definition at line 98 of file Crystal.h.

References number_.

                                 {
    return number_;};
static unsigned Crystal::oppositeDirection ( unsigned  iside) [static]
void Crystal::print ( void  ) const [inline]

Definition at line 52 of file Crystal.h.

References myCrystal_, and BaseCrystal::print().

{return myCrystal_->print();}
void Crystal::setNumber ( unsigned  n) [inline]

it might be useful to have a number assigned to the crystal

Definition at line 95 of file Crystal.h.

References n, and number_.

{number_=n;};
void Crystal::setX0Back ( double  val) [inline]

set X0back (it depends on the choosen origin, it isn't purely geometrical)

Definition at line 108 of file Crystal.h.

References X0back_.

{X0back_=val;}

Member Data Documentation

Definition at line 117 of file Crystal.h.

Referenced by getDetId().

const BaseCrystal* Crystal::myCrystal_ [private]
std::vector<CrystalNeighbour> Crystal::neighbours_ [private]

Definition at line 118 of file Crystal.h.

Referenced by Crystal(), and crystalNeighbour().

unsigned Crystal::number_ [private]

Definition at line 113 of file Crystal.h.

Referenced by number(), and setNumber().

double Crystal::X0back_ [private]

Definition at line 119 of file Crystal.h.

Referenced by getX0Back(), and setX0Back().