FairRoot/PandaRoot
Public Member Functions | Private Member Functions | Private Attributes | List of all members
PndHypCalcStrip Class Reference

#include <PndHypCalcStrip.h>

Public Member Functions

 PndHypCalcStrip ()
 
 PndHypCalcStrip (Double_t pitch, Double_t orient, Int_t nrStrips, Int_t nrFeChannels, const TVector2 &firstStripAnchor, Double_t threshold, Double_t noise)
 
 PndHypCalcStrip (const PndHypStripDigiPar *digipar, SensorSide side=kTOP)
 
std::vector< PndHypStripGetStrips (Double_t inx, Double_t iny, Double_t inz, Double_t outx, Double_t outy, Double_t outz, Double_t eLoss, int id)
 
Int_t CalcFEfromStrip (Int_t stripNr) const
 
Int_t CalcChannelfromStrip (Int_t stripNr) const
 
void CalcFeChToStrip (Int_t fe, Int_t channel, Int_t &strip, enum SensorSide &side) const
 
void CalcStripPointOnLine (const Double_t strip, TVector2 &point) const
 
const TVector2 GetStripDirection () const
 
void SetVerboseLevel (Int_t level)
 
void SetreStrip (Int_t reStp)
 
void SetAnchor (TVector2 edge)
 
void print () const
 

Private Member Functions

Double_t CalcStripFromPoint (Double_t x, Double_t y)
 
Double_t SmearCharge (Double_t charge)
 
Double_t ChargeFromEloss (Double_t eloss) const
 

Private Attributes

Double_t fPitch
 
Double_t fOrient
 strip pitch (cm) More...
 
Int_t fNrStrips
 strip orientation angle More...
 
Int_t fNrFeChannels
 Nr. of strips on active area. More...
 
Double_t fThreshold
 Nr of Channels per FE. More...
 
Double_t fNoise
 charge threshold More...
 
TVector2 fAnchor
 ENC. More...
 
TVector2 fStripDir
 anchor point on first strip More...
 
TVector2 fOrthoDir
 vector perpendicular to strip direction More...
 
TRandom3 * fRNG
 vector orthogonal to strip direction More...
 
Int_t fVerboseLevel
 Random Number Generator. More...
 
Int_t fsize
 
int _id
 

Detailed Description

Definition at line 28 of file PndHypCalcStrip.h.

Constructor & Destructor Documentation

PndHypCalcStrip::PndHypCalcStrip ( )

Definition at line 20 of file PndHypCalcStrip.cxx.

References fAnchor, fNoise, fNrStrips, fOrient, fPitch, fRNG, fThreshold, and fVerboseLevel.

20  {
21  fPitch = 0.;
22  fOrient = 0.;
23  fAnchor = TVector2(0.,0.);
24  fNrStrips = 0;
25  fThreshold = 0.;
26  fNoise = 0.;
27  fVerboseLevel = 1;
28  fRNG = new TRandom3();
29 }
Int_t fNrStrips
strip orientation angle
Double_t fNoise
charge threshold
TRandom3 * fRNG
vector orthogonal to strip direction
TVector2 fAnchor
ENC.
Int_t fVerboseLevel
Random Number Generator.
Double_t fThreshold
Nr of Channels per FE.
Double_t fOrient
strip pitch (cm)
PndHypCalcStrip::PndHypCalcStrip ( Double_t  pitch,
Double_t  orient,
Int_t  nrStrips,
Int_t  nrFeChannels,
const TVector2 &  firstStripAnchor,
Double_t  threshold,
Double_t  noise 
)

Definition at line 31 of file PndHypCalcStrip.cxx.

References cos(), fOrient, fOrthoDir, fRNG, fStripDir, fVerboseLevel, and sin().

35  : fPitch(pitch), fOrient(orient),
38  fAnchor(firstStripAnchor)
39 {
42  fVerboseLevel = 1;
43  fRNG = new TRandom3();
44  //Print();
45 }
Int_t fNrStrips
strip orientation angle
friend F32vec4 cos(const F32vec4 &a)
Definition: P4_F32vec4.h:112
friend F32vec4 sin(const F32vec4 &a)
Definition: P4_F32vec4.h:111
int nrStrips
Definition: anaLmdDigi.C:76
Double_t fNoise
charge threshold
TVector2 fOrthoDir
vector perpendicular to strip direction
TRandom3 * fRNG
vector orthogonal to strip direction
int nrFeChannels
Definition: anaLmdDigi.C:75
Int_t fNrFeChannels
Nr. of strips on active area.
double threshold
TVector2 fAnchor
ENC.
Int_t fVerboseLevel
Random Number Generator.
TVector2 fStripDir
anchor point on first strip
Double_t fThreshold
Nr of Channels per FE.
double orient
double noise
Double_t fOrient
strip pitch (cm)
PndHypCalcStrip::PndHypCalcStrip ( const PndHypStripDigiPar digipar,
SensorSide  side = kTOP 
)

Definition at line 47 of file PndHypCalcStrip.cxx.

References cos(), fAnchor, fNoise, fNrFeChannels, fNrStrips, fOrient, fOrthoDir, fPitch, fRNG, fStripDir, fThreshold, fVerboseLevel, PndHypStripDigiPar::GetBotAnchor(), PndHypStripDigiPar::GetBotPitch(), PndHypStripDigiPar::GetNoise(), PndHypStripDigiPar::GetNrBotFE(), PndHypStripDigiPar::GetNrFECh(), PndHypStripDigiPar::GetNrTopFE(), PndHypStripDigiPar::GetOrient(), PndHypStripDigiPar::GetSkew(), PndHypStripDigiPar::GetThreshold(), PndHypStripDigiPar::GetTopAnchor(), PndHypStripDigiPar::GetTopPitch(), kBOTTOM, kTOP, and sin().

48 {
49  if(side == kTOP)
50  {
51  fPitch = digipar->GetTopPitch();
52  fOrient = digipar->GetOrient();
53  fAnchor = digipar->GetTopAnchor();
54  fNrStrips = digipar->GetNrTopFE()*digipar->GetNrFECh();
55  }
56  else if(side == kBOTTOM)
57  {
58  fPitch = digipar->GetBotPitch();
59  fOrient = digipar->GetOrient() + digipar->GetSkew();
60  fAnchor = digipar->GetBotAnchor();
61  fNrStrips = digipar->GetNrBotFE()*digipar->GetNrFECh();
62  }
63  fNrFeChannels = digipar->GetNrFECh();
64  fThreshold = digipar->GetThreshold();
65  fNoise = digipar->GetNoise();
66 
69  fVerboseLevel = 1;
70  fRNG = new TRandom3();
71  //Print();
72 
73 }
Int_t fNrStrips
strip orientation angle
friend F32vec4 cos(const F32vec4 &a)
Definition: P4_F32vec4.h:112
Double_t GetSkew() const
TVector2 GetTopAnchor() const
Double_t GetNoise() const
Double_t GetBotPitch() const
Int_t GetNrFECh() const
friend F32vec4 sin(const F32vec4 &a)
Definition: P4_F32vec4.h:111
TVector2 GetBotAnchor() const
Double_t fNoise
charge threshold
TVector2 fOrthoDir
vector perpendicular to strip direction
Double_t GetThreshold() const
TRandom3 * fRNG
vector orthogonal to strip direction
Int_t fNrFeChannels
Nr. of strips on active area.
TVector2 fAnchor
ENC.
Int_t fVerboseLevel
Random Number Generator.
TVector2 fStripDir
anchor point on first strip
Int_t GetNrTopFE() const
Double_t fThreshold
Nr of Channels per FE.
Double_t GetOrient() const
Double_t GetTopPitch() const
Double_t fOrient
strip pitch (cm)
Int_t GetNrBotFE() const

Member Function Documentation

Int_t PndHypCalcStrip::CalcChannelfromStrip ( Int_t  stripNr) const

84 * Calculate Channel index (on Frontend) from strip-index 85 *

Parameters
stripNrstrip index 86 *
Returns
channel on frontend 87

Definition at line 240 of file PndHypCalcStrip.cxx.

References fNrFeChannels.

Referenced by PndHypStripHitProducer::Exec().

240 { return (stripNr%fNrFeChannels); }
Int_t fNrFeChannels
Nr. of strips on active area.
void PndHypCalcStrip::CalcFeChToStrip ( Int_t  fe,
Int_t  channel,
Int_t &  strip,
enum SensorSide side 
) const

91 * Calculate global strip index from Frontend number and -channel 92 *

Parameters
fefrontend number 93 *
channelfrontend channel 94 *
stripglobal strip index 95 *
side96

Definition at line 242 of file PndHypCalcStrip.cxx.

References fNrFeChannels, fNrStrips, kBOTTOM, and kTOP.

Referenced by PndHypStripClusterTask::Exec().

243  {
244  Int_t nr = fe * fNrFeChannels + channel;
245  // if (nr > fNrStrips) {
246 // nr -= fNrStrips;
247 // side = kBOTTOM;
248 // } else side = kTOP;
249 
250  if (nr < fNrStrips) {
251  side = kTOP;
252  } else {
253  nr -= fNrStrips;
254  side = kBOTTOM;
255  }
256  strip = nr;
257  //std::cout<< "strip "<<strip<<"side "<<side<<" chan "<<channel<<std::endl;
258 
259  }
Int_t fNrStrips
strip orientation angle
int strip
Definition: anaMvdDigi.C:135
Int_t fNrFeChannels
Nr. of strips on active area.
int fe
Definition: anaLmdDigi.C:67
Int_t PndHypCalcStrip::CalcFEfromStrip ( Int_t  stripNr) const

Calculate Frontend number from strip-index

Parameters
stripNrstrip index
Returns
Frontend number

Definition at line 238 of file PndHypCalcStrip.cxx.

References fNrFeChannels.

Referenced by PndHypStripHitProducer::Exec().

238 { return (stripNr/fNrFeChannels); }
Int_t fNrFeChannels
Nr. of strips on active area.
Double_t PndHypCalcStrip::CalcStripFromPoint ( Double_t  x,
Double_t  y 
)
private

125 * Calculate continuous strip-number parameter from given Point in local system 126 *

Parameters
xx-coordinate 127 *
yy-coordinate 128 *
Returns
strip-parameter nu 129

Definition at line 229 of file PndHypCalcStrip.cxx.

References fAnchor, fOrthoDir, and fPitch.

Referenced by GetStrips().

230  {
231  return ( (x-fAnchor.X())*fOrthoDir.Y()
232  -(y-fAnchor.Y())*fOrthoDir.X() )/fPitch;
233  //std::cout<<" nrstrip "
234  // <<( (x-fAnchor.X())*fStripDir.Y()-(y-fAnchor.Y())*fStripDir.X() )/fPitch<<std::endl;
235 
236  }
TVector2 fOrthoDir
vector perpendicular to strip direction
TVector2 fAnchor
ENC.
Double_t x
Double_t y
void PndHypCalcStrip::CalcStripPointOnLine ( const Double_t  strip,
TVector2 &  point 
) const

Definition at line 262 of file PndHypCalcStrip.cxx.

References fAnchor, fOrthoDir, and fPitch.

Referenced by PndHypStripClusterTask::Exec().

263 {
264  point = fAnchor + ( fPitch * (strip+0.5) * fOrthoDir ) ;
265 }
TVector2 fOrthoDir
vector perpendicular to strip direction
int strip
Definition: anaMvdDigi.C:135
TVector2 fAnchor
ENC.
PndSdsMCPoint * point
Definition: anaLmdCluster.C:72
Double_t PndHypCalcStrip::ChargeFromEloss ( Double_t  eloss) const
inlineprivate

Definition at line 116 of file PndHypCalcStrip.h.

Referenced by GetStrips().

116 {return eloss/(3.61e-9);}
double eloss
Definition: anaLmdSim.C:34
const TVector2 PndHypCalcStrip::GetStripDirection ( ) const
inline

Get Strip Direction (strip orientation angle)

Definition at line 72 of file PndHypCalcStrip.h.

References fStripDir.

Referenced by PndHypStripClusterTask::Exec().

72 {return fStripDir;}
TVector2 fStripDir
anchor point on first strip
std::vector< PndHypStrip > PndHypCalcStrip::GetStrips ( Double_t  inx,
Double_t  iny,
Double_t  inz,
Double_t  outx,
Double_t  outy,
Double_t  outz,
Double_t  eLoss,
int  id 
)

Definition at line 77 of file PndHypCalcStrip.cxx.

References CalcStripFromPoint(), ChargeFromEloss(), Double_t, fabs(), fNrStrips, fThreshold, fVerboseLevel, n, out, and SmearCharge().

Referenced by PndHypStripHitProducer::Exec().

80 {//1
81  if (fVerboseLevel > 2) std::cout<<"-I- PndHypCalcStrip::GetStrips "<<std::endl;
82 
83  // 2d-Projection of trajectory
84  //mvd local c.s(x,y);hyp local c.s(x-z);3.03.08 new hyp cs(xy)
85  TVector2 in(inx,iny);//TVector2 in(inx,inz);
86  TVector2 out(outx,outy);//TVector2 out(outx,outz);
87  TVector2 path=out-in;
88 
89  if (fVerboseLevel > 2){
90  std::cout<<" InPoint: ("<<in.X()<<","<<in.Y()<<std::endl;
91  std::cout<<" OutPoint: ("<<out.X()<<","<<out.Y()<<std::endl;
92  }
93 
94  std::vector<PndHypStrip> strips;
95  Double_t SmearedQ;
96 
97  if (path.Mod()<1E-18) {
98  std::cout<<"-W- PndHypCalcStrip::GetStrips : No Trajectory inside Sensor!"<<path.Mod()<<std::endl;
99  return strips;
100  }
101 
102  if (fVerboseLevel > 1) std::cout<<" pathlength: "<<path.Mod()<<std::endl;
103 
104  Double_t nuIn = CalcStripFromPoint(inx,iny);
105  Double_t nuOut = CalcStripFromPoint(outx,outy);
106 
107  if (fVerboseLevel > 2) std::cout<<" nuIn = "<<nuIn<<" ; nuOut = "<<nuOut<<std::endl;
108 
109  //Double_t dir = 0.;
110  //if (nuOut>nuIn) dir=1.;
111  //else dir = -1.;
112 
113  Double_t Q = ChargeFromEloss(eLoss);//*1E9/3.61; // 3.6 Electrons/eV in Silicon
114  if (fVerboseLevel > 1) std::cout<<" integral charge = "<<Q<<std::endl;
115 
116  // did we hit the active area ?
117  //if ( (nuIn<0.5 && nuOut<0.5) ||
118  // (((nuIn+0.5) >Double_t(fNrStrips-1)) && ((nuOut+0.5) > Double_t(fNrStrips-1))))
119 
120  if ( (nuIn<0. && nuOut<0.) || ((nuIn >Double_t(fNrStrips)) && (nuOut > Double_t(fNrStrips))))
121  {
122  if (fVerboseLevel > 1) std::cout<<" Hit outside active area."<<std::endl;
123  return strips;
124  }
125 
126  // is the In-Point inside active area ?// only charge fraction inside active area taken
127  if (nuIn<0.){
128  Q *= (nuOut)/(nuOut-nuIn);
129  nuIn = 0.;
130  } else if (nuIn > (Double_t(fNrStrips))){
131  Q *= ((Double_t)fNrStrips-nuOut)/(-nuOut+nuIn);
132  nuIn = Double_t(fNrStrips);
133  }
134 
135  // is the Out-Point inside active area ?
136  if (nuOut<0.){
137  Q *= (nuIn)/(-nuOut+nuIn);
138  nuOut = 0.;
139 
140  } else if (nuOut > (Double_t(fNrStrips))){
141  Q *= ((Double_t)fNrStrips-nuIn)/(nuOut-nuIn);
142  nuOut = Double_t(fNrStrips);
143  }
144 
145  // only one strip hit ?
146  if (Int_t(nuIn) == Int_t(nuOut))
147  {
148  // this strip collected the entire charge
149  SmearedQ = SmearCharge(Q);
150  if (SmearedQ >= fThreshold)strips.push_back(PndHypStrip(Int_t(nuOut),SmearedQ));
151 
152  if (fVerboseLevel > 1) std::cout<<" -> 1 strip hit."<<std::endl;
153  //return strips;
154  }
155  else {
156 
157  Int_t nrHits = 0;
158  Double_t dQ=Q/std::fabs(nuOut-nuIn);
159  Double_t dir = (nuOut>nuIn) ? 1. : -1.;
160  // calculate portion of track in first strip
161  Int_t nextIn = Int_t(nuIn + 0.5+0.5*dir);
162  Double_t Q1 = dQ*std::fabs(nextIn-nuIn);
163 
164  if (fVerboseLevel > 2)
165  {
166  std::cout<<" part of first strip : "<<nextIn-nuIn<<std::endl ;
167  std::cout<<" charge : "<<Q1<<std::endl ;
168  std::cout<<" next strip : "<<nextIn<<std::endl ;
169  }
170  SmearedQ = SmearCharge(Q1);
171  if (SmearedQ >= fThreshold)strips.push_back(PndHypStrip(Int_t(nuIn),SmearedQ));
172  nrHits++;
173  Q -= Q1;
174 
175 
176 
177  // calculate portion of track in last strip
178  Int_t prevOut = Int_t(nuOut + 0.5-0.5*dir);
179  Double_t Q2 = dQ*std::fabs(nuOut-prevOut);
180 
181  if (fVerboseLevel > 2){
182  std::cout<<" part of last strip : "<<(nuOut-prevOut)<<std::endl ;
183  std::cout<<" charge : "<<Q2<<std::endl ;
184  std::cout<<" end of previous strip : "<<prevOut<<std::endl ;
185  }
186  SmearedQ = SmearCharge(Q2);
187 
188  if (SmearedQ >= fThreshold)strips.push_back(PndHypStrip(Int_t(nuOut),SmearedQ));
189  nrHits++;
190  Q -= Q2;
191 
192 
193 
194  // Distribute the charge among the intermediate strips
195  nextIn = Int_t(nextIn - 0.5 + 0.5*dir);
196  prevOut = Int_t(prevOut - 0.5 + 0.5*dir);
197 
198 
199  if (fVerboseLevel > 2) {
200  std::cout<<" dir="<<Int_t((dir))<<std::endl;
201  std::cout<<" begin="<<nextIn<<" end="<<prevOut<<std::endl;
202  }
203 
204  for (Int_t n = nextIn ; n != prevOut; n += Int_t(dir) )
205  {
206 
207  if (fVerboseLevel > 2) std::cout<<" n = "<<n<<std::endl;
208  SmearedQ = SmearCharge(dQ);
209  if (SmearedQ >= fThreshold)strips.push_back(PndHypStrip(n,SmearedQ));
210  nrHits++;
211  Q -= dQ; //std::cout<<" loop over MORE strips : charge "<<Q<<" dQ "<<dQ<<std::endl;
212  }
213  if (fVerboseLevel > 2)if (fabs(Q)>1.) std::cout<<" charge Q = "<<Q<<" not detected!"<<std::endl;
214  if (fVerboseLevel > 1) std::cout<<" -> "<<nrHits<<" strips hit."<<std::endl;
215  }
216 
217 
218 
219  return strips;
220 }
Int_t fNrStrips
strip orientation angle
int n
Double_t ChargeFromEloss(Double_t eloss) const
Double_t
Double_t SmearCharge(Double_t charge)
friend F32vec4 fabs(const F32vec4 &a)
Definition: P4_F32vec4.h:47
TFile * out
Definition: reco_muo.C:20
Double_t CalcStripFromPoint(Double_t x, Double_t y)
Int_t fVerboseLevel
Random Number Generator.
Double_t fThreshold
Nr of Channels per FE.
void PndHypCalcStrip::print ( ) const

Definition at line 268 of file PndHypCalcStrip.cxx.

References fAnchor, fNrFeChannels, fNrStrips, fOrient, fPitch, fStripDir, and Pi.

269 {
270  std::cout<<"-I- PndHypCalcStrip Info :"<<std::endl;
271  std::cout<<" Pitch = "<<fPitch*10000.<<" um"<<std::endl;
272  std::cout<<" Orientation = "<<fOrient/TMath::Pi()*180.<<" deg"<<std::endl;
273  std::cout<<" Nr Strips = "<<fNrStrips<<std::endl;
274  std::cout<<" nr of channels per FE = "<<fNrFeChannels<<std::endl;
275  std::cout<<" nr of frontends = "<<fNrStrips/fNrFeChannels<<std::endl;
276  std::cout<<" Anchor Point = "<<fAnchor.X()<<","<<fAnchor.Y()<<")"<<std::endl;
277  std::cout<<" Strip Vector = ("<<fStripDir.X()<<","<<fStripDir.Y()<<")"<<std::endl;
278 }
Int_t fNrStrips
strip orientation angle
Int_t fNrFeChannels
Nr. of strips on active area.
TVector2 fAnchor
ENC.
TVector2 fStripDir
anchor point on first strip
Double_t Pi
Double_t fOrient
strip pitch (cm)
void PndHypCalcStrip::SetAnchor ( TVector2  edge)
inline

Definition at line 77 of file PndHypCalcStrip.h.

References fAnchor.

Referenced by PndHypStripHitProducer::Exec().

77 {fAnchor = edge;}
TVector2 fAnchor
ENC.
void PndHypCalcStrip::SetreStrip ( Int_t  reStp)
inline

Definition at line 76 of file PndHypCalcStrip.h.

References fNrStrips.

Referenced by PndHypStripHitProducer::Exec().

76 {fNrStrips = reStp;}
Int_t fNrStrips
strip orientation angle
void PndHypCalcStrip::SetVerboseLevel ( Int_t  level)
inline

Definition at line 74 of file PndHypCalcStrip.h.

References fVerboseLevel.

Referenced by PndHypStripHitProducer::Exec(), and PndHypStripHitProducer::Init().

74 { fVerboseLevel = level;}
Int_t fVerboseLevel
Random Number Generator.
Double_t PndHypCalcStrip::SmearCharge ( Double_t  charge)
private

133 * Apply gaussian distributed noise to given charge 134 *

Parameters
chargeEquivalent Noise Charge 135 *
Returns
Smeared Charge 136

Definition at line 222 of file PndHypCalcStrip.cxx.

References Double_t, fNoise, fRNG, and fVerboseLevel.

Referenced by GetStrips().

223 {
224  Double_t smeared = fRNG->Gaus(charge,fNoise);
225  if (fVerboseLevel > 2) std::cout<<" charge = "<<charge<<", smeared = "<<smeared<<std::endl;
226  return smeared;//fRNG->Gaus(charge,fNoise);//smeared;
227 }
Double_t fNoise
charge threshold
TRandom3 * fRNG
vector orthogonal to strip direction
Double_t
Int_t fVerboseLevel
Random Number Generator.

Member Data Documentation

int PndHypCalcStrip::_id
private

Definition at line 100 of file PndHypCalcStrip.h.

TVector2 PndHypCalcStrip::fAnchor
private

ENC.

Definition at line 92 of file PndHypCalcStrip.h.

Referenced by CalcStripFromPoint(), CalcStripPointOnLine(), PndHypCalcStrip(), print(), and SetAnchor().

Double_t PndHypCalcStrip::fNoise
private

charge threshold

Definition at line 91 of file PndHypCalcStrip.h.

Referenced by PndHypCalcStrip(), and SmearCharge().

Int_t PndHypCalcStrip::fNrFeChannels
private

Nr. of strips on active area.

Definition at line 89 of file PndHypCalcStrip.h.

Referenced by CalcChannelfromStrip(), CalcFeChToStrip(), CalcFEfromStrip(), PndHypCalcStrip(), and print().

Int_t PndHypCalcStrip::fNrStrips
private

strip orientation angle

Definition at line 88 of file PndHypCalcStrip.h.

Referenced by CalcFeChToStrip(), GetStrips(), PndHypCalcStrip(), print(), and SetreStrip().

Double_t PndHypCalcStrip::fOrient
private

strip pitch (cm)

Definition at line 87 of file PndHypCalcStrip.h.

Referenced by PndHypCalcStrip(), and print().

TVector2 PndHypCalcStrip::fOrthoDir
private

vector perpendicular to strip direction

Definition at line 94 of file PndHypCalcStrip.h.

Referenced by CalcStripFromPoint(), CalcStripPointOnLine(), and PndHypCalcStrip().

Double_t PndHypCalcStrip::fPitch
private

Definition at line 86 of file PndHypCalcStrip.h.

Referenced by CalcStripFromPoint(), CalcStripPointOnLine(), PndHypCalcStrip(), and print().

TRandom3* PndHypCalcStrip::fRNG
private

vector orthogonal to strip direction

Definition at line 95 of file PndHypCalcStrip.h.

Referenced by PndHypCalcStrip(), and SmearCharge().

Int_t PndHypCalcStrip::fsize
private

Definition at line 97 of file PndHypCalcStrip.h.

TVector2 PndHypCalcStrip::fStripDir
private

anchor point on first strip

Definition at line 93 of file PndHypCalcStrip.h.

Referenced by GetStripDirection(), PndHypCalcStrip(), and print().

Double_t PndHypCalcStrip::fThreshold
private

Nr of Channels per FE.

Definition at line 90 of file PndHypCalcStrip.h.

Referenced by GetStrips(), and PndHypCalcStrip().

Int_t PndHypCalcStrip::fVerboseLevel
private

Random Number Generator.

Definition at line 96 of file PndHypCalcStrip.h.

Referenced by GetStrips(), PndHypCalcStrip(), SetVerboseLevel(), and SmearCharge().


The documentation for this class was generated from the following files: