CMS 3D CMS Logo

List of all members | Public Member Functions | Private Attributes
CSCCrossGap Class Reference

#include <CSCCrossGap.h>

Public Member Functions

void addCluster (LocalPoint here)
 
void addElectrons (int nelec=1)
 
void addElectronToBack ()
 
void addEloss (float eloss)
 
void addStep (double step)
 
double beta2 () const
 
 CSCCrossGap (double mass, float mom, LocalVector gap)
 
std::vector< int > electrons () const
 
std::vector< float > eLossPerStep () const
 
double gamma () const
 
LocalVector gapVector () const
 
std::vector< LocalPointionClusters () const
 
float length () const
 
double logGamma (double mass, float momentum)
 
double logGamma ()
 
int noOfClusters () const
 
int noOfElectrons () const
 
int noOfElosses () const
 
int noOfSteps () const
 
std::vector< double > stepLengths () const
 
LocalVector unitVector () const
 
 ~CSCCrossGap ()
 

Private Attributes

std::vector< LocalPointclusters
 
std::vector< int > electronsInClusters
 
std::vector< float > elosses
 
double loggam
 
std::vector< double > steps
 
double theBeta2
 
double theGamma
 
LocalVector theGap
 

Detailed Description

Class used to represent one CSC gas gap crossing by a charged track.

Author
Tim Cox

This is used by CSCCSCGasCollisions in the digitization of the CSCs. Actually this may NOT model the whole gas gap, but just the path length corresponding to a PSimHit in the gap (i.e. from the PSimHit 'entry point' to its 'exit point'). PSimHit's can have a pretty evanescent existence and I can't pretend to have a full understanding of their full range of characteristics. Yet another thing 'to be studied'.

Definition at line 22 of file CSCCrossGap.h.

Constructor & Destructor Documentation

◆ CSCCrossGap()

CSCCrossGap::CSCCrossGap ( double  mass,
float  mom,
LocalVector  gap 
)

iam = particle type in PDG code. mom = momentum of particle gap = space std::vector representing the hit entry and exit

Definition at line 6 of file CSCCrossGap.cc.

References length(), logGamma(), LogTrace, and EgHLTOffHistBins_cfi::mass.

8  logGamma(mass, mom);
9  LogTrace("CSCCrossGap") << "CSCCrossGap: simhit \n"
10  << "mass = " << mass << "GeV/c2, momentum = " << mom << " GeV/c, gap length = " << length()
11  << " cm \n";
12 }
std::vector< float > elosses
Definition: CSCCrossGap.h:65
#define LogTrace(id)
std::vector< int > electronsInClusters
Definition: CSCCrossGap.h:63
double loggam
Definition: CSCCrossGap.h:59
LocalVector theGap
Definition: CSCCrossGap.h:60
std::vector< double > steps
Definition: CSCCrossGap.h:64
std::vector< LocalPoint > clusters
Definition: CSCCrossGap.h:62
double theBeta2
Definition: CSCCrossGap.h:57
double theGamma
Definition: CSCCrossGap.h:58
double logGamma()
Definition: CSCCrossGap.h:49
float length() const
Definition: CSCCrossGap.h:54

◆ ~CSCCrossGap()

CSCCrossGap::~CSCCrossGap ( )
inline

Definition at line 30 of file CSCCrossGap.h.

30 {};

Member Function Documentation

◆ addCluster()

void CSCCrossGap::addCluster ( LocalPoint  here)
inline

Definition at line 41 of file CSCCrossGap.h.

References clusters.

Referenced by CSCGasCollisions::ionize().

41 { clusters.push_back(here); }
std::vector< LocalPoint > clusters
Definition: CSCCrossGap.h:62

◆ addElectrons()

void CSCCrossGap::addElectrons ( int  nelec = 1)
inline

Definition at line 42 of file CSCCrossGap.h.

References electronsInClusters.

Referenced by CSCGasCollisions::ionize().

42 { electronsInClusters.push_back(nelec); }
std::vector< int > electronsInClusters
Definition: CSCCrossGap.h:63

◆ addElectronToBack()

void CSCCrossGap::addElectronToBack ( )
inline

Definition at line 43 of file CSCCrossGap.h.

References electronsInClusters.

Referenced by CSCGasCollisions::ionize().

43 { ++electronsInClusters.back(); }
std::vector< int > electronsInClusters
Definition: CSCCrossGap.h:63

◆ addEloss()

void CSCCrossGap::addEloss ( float  eloss)
inline

Definition at line 46 of file CSCCrossGap.h.

References elosses.

Referenced by CSCGasCollisions::generateEnergyLoss().

46 { elosses.push_back(eloss); }
std::vector< float > elosses
Definition: CSCCrossGap.h:65

◆ addStep()

void CSCCrossGap::addStep ( double  step)
inline

Definition at line 45 of file CSCCrossGap.h.

References steps.

Referenced by CSCGasCollisions::generateStep().

45 { steps.push_back(step); }
std::vector< double > steps
Definition: CSCCrossGap.h:64
step
Definition: StallMonitor.cc:98

◆ beta2()

double CSCCrossGap::beta2 ( ) const
inline

Definition at line 50 of file CSCCrossGap.h.

References theBeta2.

Referenced by CSCGasCollisions::generateEnergyLoss().

50 { return theBeta2; }
double theBeta2
Definition: CSCCrossGap.h:57

◆ electrons()

std::vector<int> CSCCrossGap::electrons ( ) const
inline

Definition at line 34 of file CSCCrossGap.h.

References electronsInClusters.

Referenced by CSCGasCollisions::simulate(), and CSCGasCollisions::writeSummary().

34 { return electronsInClusters; }
std::vector< int > electronsInClusters
Definition: CSCCrossGap.h:63

◆ eLossPerStep()

std::vector<float> CSCCrossGap::eLossPerStep ( ) const
inline

Definition at line 38 of file CSCCrossGap.h.

References elosses.

Referenced by CSCGasCollisions::writeSummary().

38 { return elosses; }
std::vector< float > elosses
Definition: CSCCrossGap.h:65

◆ gamma()

double CSCCrossGap::gamma ( ) const
inline

Definition at line 51 of file CSCCrossGap.h.

References theGamma.

Referenced by CSCGasCollisions::generateEnergyLoss().

51 { return theGamma; }
double theGamma
Definition: CSCCrossGap.h:58

◆ gapVector()

LocalVector CSCCrossGap::gapVector ( ) const
inline

Definition at line 52 of file CSCCrossGap.h.

References theGap.

52 { return theGap; }
LocalVector theGap
Definition: CSCCrossGap.h:60

◆ ionClusters()

std::vector<LocalPoint> CSCCrossGap::ionClusters ( ) const
inline

Definition at line 32 of file CSCCrossGap.h.

References clusters.

Referenced by CSCGasCollisions::simulate(), and CSCGasCollisions::writeSummary().

32 { return clusters; }
std::vector< LocalPoint > clusters
Definition: CSCCrossGap.h:62

◆ length()

float CSCCrossGap::length ( void  ) const
inline

Definition at line 54 of file CSCCrossGap.h.

References PV3DBase< T, PVType, FrameType >::mag(), and theGap.

Referenced by CSCCrossGap(), and CSCGasCollisions::simulate().

54 { return theGap.mag(); }
T mag() const
Definition: PV3DBase.h:64
LocalVector theGap
Definition: CSCCrossGap.h:60

◆ logGamma() [1/2]

double CSCCrossGap::logGamma ( double  mass,
float  momentum 
)

Definition at line 14 of file CSCCrossGap.cc.

References dqm-mbProfile::log, loggam, LogTrace, EgHLTOffHistBins_cfi::mass, SiStripPI::max, mathSSE::sqrt(), theBeta2, and theGamma.

Referenced by CSCGasCollisions::simulate().

14  {
15  theGamma = sqrt((mom / mass) * (mom / mass) + 1.);
16  theBeta2 = 1. - 1. / (theGamma * theGamma);
17  LogTrace("CSCCrossGap") << "gamma = " << theGamma << ", beta2 = " << theBeta2
18  << ", beta*gamma = " << sqrt(theGamma * theGamma - 1.);
19  ;
20 
21  // The lowest value in table (=theGammaBins[0]) is ln(1.1)=0.0953102
22  // (Compensate later if lower)
23  loggam = log(std::max(1.1, theGamma)); // F-P literal IS double by default!
24  LogTrace("CSCCrossGap") << "logGamma = " << loggam;
25 
26  return loggam;
27 }
#define LogTrace(id)
T sqrt(T t)
Definition: SSEVec.h:19
double loggam
Definition: CSCCrossGap.h:59
double theBeta2
Definition: CSCCrossGap.h:57
double theGamma
Definition: CSCCrossGap.h:58

◆ logGamma() [2/2]

double CSCCrossGap::logGamma ( )
inline

Definition at line 49 of file CSCCrossGap.h.

References loggam.

Referenced by CSCCrossGap().

49 { return loggam; }
double loggam
Definition: CSCCrossGap.h:59

◆ noOfClusters()

int CSCCrossGap::noOfClusters ( ) const
inline

Definition at line 33 of file CSCCrossGap.h.

References clusters.

Referenced by CSCGasCollisions::ionize().

33 { return clusters.size(); }
std::vector< LocalPoint > clusters
Definition: CSCCrossGap.h:62

◆ noOfElectrons()

int CSCCrossGap::noOfElectrons ( ) const
inline

Definition at line 35 of file CSCCrossGap.h.

References electronsInClusters.

Referenced by CSCGasCollisions::ionize().

35 { return electronsInClusters.size(); }
std::vector< int > electronsInClusters
Definition: CSCCrossGap.h:63

◆ noOfElosses()

int CSCCrossGap::noOfElosses ( ) const
inline

Definition at line 39 of file CSCCrossGap.h.

References elosses.

39 { return elosses.size(); }
std::vector< float > elosses
Definition: CSCCrossGap.h:65

◆ noOfSteps()

int CSCCrossGap::noOfSteps ( ) const
inline

Definition at line 37 of file CSCCrossGap.h.

References steps.

37 { return steps.size(); }
std::vector< double > steps
Definition: CSCCrossGap.h:64

◆ stepLengths()

std::vector<double> CSCCrossGap::stepLengths ( ) const
inline

Definition at line 36 of file CSCCrossGap.h.

References steps.

Referenced by CSCGasCollisions::writeSummary().

36 { return steps; }
std::vector< double > steps
Definition: CSCCrossGap.h:64

◆ unitVector()

LocalVector CSCCrossGap::unitVector ( ) const
inline

Definition at line 53 of file CSCCrossGap.h.

References theGap, and Vector3DBase< T, FrameTag >::unit().

Referenced by CSCGasCollisions::ionize(), and CSCGasCollisions::simulate().

53 { return theGap.unit(); }
LocalVector theGap
Definition: CSCCrossGap.h:60
Vector3DBase unit() const
Definition: Vector3DBase.h:54

Member Data Documentation

◆ clusters

std::vector<LocalPoint> CSCCrossGap::clusters
private

Definition at line 62 of file CSCCrossGap.h.

Referenced by addCluster(), ionClusters(), and noOfClusters().

◆ electronsInClusters

std::vector<int> CSCCrossGap::electronsInClusters
private

Definition at line 63 of file CSCCrossGap.h.

Referenced by addElectrons(), addElectronToBack(), electrons(), and noOfElectrons().

◆ elosses

std::vector<float> CSCCrossGap::elosses
private

Definition at line 65 of file CSCCrossGap.h.

Referenced by addEloss(), eLossPerStep(), and noOfElosses().

◆ loggam

double CSCCrossGap::loggam
private

Definition at line 59 of file CSCCrossGap.h.

Referenced by logGamma().

◆ steps

std::vector<double> CSCCrossGap::steps
private

Definition at line 64 of file CSCCrossGap.h.

Referenced by addStep(), noOfSteps(), and stepLengths().

◆ theBeta2

double CSCCrossGap::theBeta2
private

Definition at line 57 of file CSCCrossGap.h.

Referenced by beta2(), and logGamma().

◆ theGamma

double CSCCrossGap::theGamma
private

Definition at line 58 of file CSCCrossGap.h.

Referenced by gamma(), and logGamma().

◆ theGap

LocalVector CSCCrossGap::theGap
private

Definition at line 60 of file CSCCrossGap.h.

Referenced by gapVector(), length(), and unitVector().