CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions | Private Member Functions | Private Attributes
SiStripLorentzAngleGenerator Class Reference

#include <SiStripLorentzAngleGenerator.h>

Inheritance diagram for SiStripLorentzAngleGenerator:
SiStripCondObjBuilderBase< SiStripLorentzAngle >

Public Member Functions

void getObj (SiStripLorentzAngle *&obj)
 
 SiStripLorentzAngleGenerator (const edm::ParameterSet &, const edm::ActivityRegistry &)
 
 ~SiStripLorentzAngleGenerator ()
 
- Public Member Functions inherited from SiStripCondObjBuilderBase< SiStripLorentzAngle >
virtual bool checkForCompatibility (std::string ss)
 
virtual void getMetaDataString (std::stringstream &ss)
 
virtual void initialize ()
 
 SiStripCondObjBuilderBase (const edm::ParameterSet &pset)
 
virtual ~SiStripCondObjBuilderBase ()
 

Private Member Functions

SiStripLorentzAnglecreateObject ()
 
void setHallMobility (const double &meanMin, const double &meanMax, const double &sigma, const bool uniform)
 
void setUniform (const std::vector< double > &TIB_EstimatedValuesMin, const std::vector< double > &TIB_EstimatedValuesMax, std::vector< bool > &uniformTIB)
 Method used to determine whether to generate with a uniform distribution for each layer. More...
 

Private Attributes

float hallMobility_
 

Additional Inherited Members

- Protected Attributes inherited from SiStripCondObjBuilderBase< SiStripLorentzAngle >
edm::ParameterSet _pset
 
SiStripLorentzAngleobj_
 

Detailed Description

Generator of the ideal/fake conditions for the LorentzAngle.
It receives input values with layer granularity and it is able to perform gaussian smearing or use a uniform distribution at the module level.
Depending on the parameters passed via cfg, it is able to generate the values per DetId with a gaussian distribution and a uniform distribution. When setting the sigma of the gaussian to 0 and passing a single value the generated values are fixed.
For TID and TEC the decision to generate with a uniform distribution comes from the setting for the first layers of TIB and TOB.

Definition at line 22 of file SiStripLorentzAngleGenerator.h.

Constructor & Destructor Documentation

SiStripLorentzAngleGenerator::SiStripLorentzAngleGenerator ( const edm::ParameterSet iConfig,
const edm::ActivityRegistry aReg 
)
explicit

Definition at line 22 of file SiStripLorentzAngleGenerator.cc.

22  :
24 {
25  edm::LogInfo("SiStripLorentzAngleGenerator") << "[SiStripLorentzAngleGenerator::SiStripLorentzAngleGenerator]";
26 }
SiStripCondObjBuilderBase(const edm::ParameterSet &pset)
SiStripLorentzAngleGenerator::~SiStripLorentzAngleGenerator ( )

Definition at line 29 of file SiStripLorentzAngleGenerator.cc.

29  {
30  edm::LogInfo("SiStripLorentzAngleGenerator") << "[SiStripLorentzAngleGenerator::~SiStripLorentzAngleGenerator]";
31 }

Member Function Documentation

SiStripLorentzAngle * SiStripLorentzAngleGenerator::createObject ( )
private

Definition at line 50 of file SiStripLorentzAngleGenerator.cc.

References SiStripCondObjBuilderBase< SiStripLorentzAngle >::_pset, gather_cfg::cout, edm::FileInPath::fullPath(), edm::ParameterSet::getParameter(), hallMobility_, TOBDetId::layer(), TIBDetId::layer(), getGTfromDQMFile::obj, SiStripLorentzAngle::putLorentzAngle(), matplotRender::reader, TECDetId::ringNumber(), setHallMobility(), setUniform(), redigi_cff::SiStripLorentzAngle, DetId::subdetId(), StripSubdetector::TEC, StripSubdetector::TIB, StripSubdetector::TID, StripSubdetector::TOB, and create_public_lumi_plots::transform.

Referenced by Vispa.Views.LineDecayView.LineDecayContainer::dropEvent(), and getObj().

51 {
53 
55 
56  std::vector<double> TIB_EstimatedValuesMin(_pset.getParameter<std::vector<double> >("TIB_EstimatedValuesMin"));
57  std::vector<double> TIB_EstimatedValuesMax(_pset.getParameter<std::vector<double> >("TIB_EstimatedValuesMax"));
58  std::vector<double> TOB_EstimatedValuesMin(_pset.getParameter<std::vector<double> >("TOB_EstimatedValuesMin"));
59  std::vector<double> TOB_EstimatedValuesMax(_pset.getParameter<std::vector<double> >("TOB_EstimatedValuesMax"));
60  std::vector<double> TIB_PerCent_Errs(_pset.getParameter<std::vector<double> >("TIB_PerCent_Errs"));
61  std::vector<double> TOB_PerCent_Errs(_pset.getParameter<std::vector<double> >("TOB_PerCent_Errs"));
62 
63  // If max values are passed they must be equal in number to the min values.
64  if( (TIB_EstimatedValuesMax.size() != 0 && (TIB_EstimatedValuesMin.size() != TIB_EstimatedValuesMax.size())) ||
65  (TOB_EstimatedValuesMax.size() != 0 && (TOB_EstimatedValuesMin.size() != TOB_EstimatedValuesMax.size())) ) {
66  std::cout << "ERROR: size of min and max values is different" << std::endl;
67  std::cout << "TIB_EstimatedValuesMin.size() = " << TIB_EstimatedValuesMin.size() << ", TIB_EstimatedValuesMax.size() " << TIB_EstimatedValuesMax.size() << std::endl;
68  std::cout << "TOB_EstimatedValuesMin.size() = " << TOB_EstimatedValuesMin.size() << ", TOB_EstimatedValuesMax.size() " << TOB_EstimatedValuesMax.size() << std::endl;
69  }
70  std::vector<bool> uniformTIB(TIB_EstimatedValuesMin.size(), false);
71  std::vector<bool> uniformTOB(TOB_EstimatedValuesMin.size(), false);
72 
73  setUniform(TIB_EstimatedValuesMin, TIB_EstimatedValuesMax, uniformTIB);
74  setUniform(TOB_EstimatedValuesMin, TOB_EstimatedValuesMax, uniformTOB);
75 
77 
78  // Compute standard deviations
79  std::vector<double> StdDevs_TIB(TIB_EstimatedValuesMin.size(), 0);
80  std::vector<double> StdDevs_TOB(TOB_EstimatedValuesMin.size(), 0);
81  transform(TIB_EstimatedValuesMin.begin(), TIB_EstimatedValuesMin.end(), TIB_PerCent_Errs.begin(), StdDevs_TIB.begin(), computeSigma);
82  transform(TOB_EstimatedValuesMin.begin(), TOB_EstimatedValuesMin.end(), TOB_PerCent_Errs.begin(), StdDevs_TOB.begin(), computeSigma);
83 
84  // Compute mean values to be used with TID and TEC
85  double TIBmeanValueMin = std::accumulate( TIB_EstimatedValuesMin.begin(), TIB_EstimatedValuesMin.end(), 0.)/double(TIB_EstimatedValuesMin.size());
86  double TIBmeanValueMax = std::accumulate( TIB_EstimatedValuesMax.begin(), TIB_EstimatedValuesMax.end(), 0.)/double(TIB_EstimatedValuesMax.size());
87  double TOBmeanValueMin = std::accumulate( TOB_EstimatedValuesMin.begin(), TOB_EstimatedValuesMin.end(), 0.)/double(TOB_EstimatedValuesMin.size());
88  double TOBmeanValueMax = std::accumulate( TOB_EstimatedValuesMax.begin(), TOB_EstimatedValuesMax.end(), 0.)/double(TOB_EstimatedValuesMax.size());
89  double TIBmeanPerCentError = std::accumulate( TIB_PerCent_Errs.begin(), TIB_PerCent_Errs.end(), 0.)/double(TIB_PerCent_Errs.size());
90  double TOBmeanPerCentError = std::accumulate( TOB_PerCent_Errs.begin(), TOB_PerCent_Errs.end(), 0.)/double(TOB_PerCent_Errs.size());
91  double TIBmeanStdDev = (TIBmeanPerCentError/100)*TIBmeanValueMin;
92  double TOBmeanStdDev = (TOBmeanPerCentError/100)*TOBmeanValueMin;
93 
94  const std::vector<uint32_t> DetIds = reader.getAllDetIds();
95  for(std::vector<uint32_t>::const_iterator detit=DetIds.begin(); detit!=DetIds.end(); detit++){
96 
97  hallMobility_ = 0;
98 
99  StripSubdetector subid(*detit);
100 
101  int layerId = 0;
102 
103  if(subid.subdetId() == int (StripSubdetector::TIB)) {
104  TIBDetId theTIBDetId(*detit);
105  layerId = theTIBDetId.layer() - 1;
106  setHallMobility( TIB_EstimatedValuesMin[layerId], TIB_EstimatedValuesMax[layerId], StdDevs_TIB[layerId], uniformTIB[layerId] );
107  }
108  else if(subid.subdetId() == int (StripSubdetector::TOB)) {
109  TOBDetId theTOBDetId(*detit);
110  layerId = theTOBDetId.layer() - 1;
111  setHallMobility( TOB_EstimatedValuesMin[layerId], TOB_EstimatedValuesMax[layerId], StdDevs_TOB[layerId], uniformTOB[layerId] );
112  }
113  else if(subid.subdetId() == int (StripSubdetector::TID)) {
114  // ATTENTION: as of now the uniform generation for TID is decided by the setting for layer 0 of TIB
115  setHallMobility( TIBmeanValueMin, TIBmeanValueMax, TIBmeanStdDev, uniformTIB[0] );
116  }
117  if(subid.subdetId() == int (StripSubdetector::TEC)){
118  TECDetId TECid = TECDetId(*detit);
119  if(TECid.ringNumber()<5){
120  // ATTENTION: as of now the uniform generation for TEC is decided by the setting for layer 0 of TIB
121  setHallMobility( TIBmeanValueMin, TIBmeanValueMax, TIBmeanStdDev, uniformTIB[0] );
122  }else{
123  // ATTENTION: as of now the uniform generation for TEC is decided by the setting for layer 0 of TOB
124  setHallMobility( TOBmeanValueMin, TOBmeanValueMax, TOBmeanStdDev, uniformTOB[0] );
125  }
126  }
127 
128  if ( ! obj->putLorentzAngle(*detit, hallMobility_) ) {
129  edm::LogError("SiStripLorentzAngleGenerator")<<" detid already exists"<<std::endl;
130  }
131  }
132  return obj;
133 }
T getParameter(std::string const &) const
tuple SiStripLorentzAngle
Definition: redigi_cff.py:15
void setUniform(const std::vector< double > &TIB_EstimatedValuesMin, const std::vector< double > &TIB_EstimatedValuesMax, std::vector< bool > &uniformTIB)
Method used to determine whether to generate with a uniform distribution for each layer...
bool putLorentzAngle(const uint32_t &, float)
unsigned int ringNumber() const
Definition: TECDetId.h:98
tuple cout
Definition: gather_cfg.py:121
std::string fullPath() const
Definition: FileInPath.cc:165
void setHallMobility(const double &meanMin, const double &meanMax, const double &sigma, const bool uniform)
void SiStripLorentzAngleGenerator::getObj ( SiStripLorentzAngle *&  obj)
inlinevirtual

Returns the CondObj

Reimplemented from SiStripCondObjBuilderBase< SiStripLorentzAngle >.

Definition at line 28 of file SiStripLorentzAngleGenerator.h.

References createObject().

28 {obj=createObject();}
void SiStripLorentzAngleGenerator::setHallMobility ( const double &  meanMin,
const double &  meanMax,
const double &  sigma,
const bool  uniform 
)
private

This method fills the hallMobility_ variable with different values according to the parameters passed in the cfg.

  • If a min and max value were passed it takes the value from a uniform distribution.
  • If only a single value was passed and the error is set != 0 it takes the value from a gaussian distribution.
  • If the error is 0 and only one value is passed it takes the fixed min value.

Definition at line 33 of file SiStripLorentzAngleGenerator.cc.

References hallMobility_.

Referenced by createObject().

33  {
34  if( uniform ) hallMobility_ = CLHEP::RandFlat::shoot(meanMin, meanMax);
35  else if( sigma>0 ) hallMobility_ = CLHEP::RandGauss::shoot(meanMin, sigma);
36  else hallMobility_ = meanMin;
37 }
void SiStripLorentzAngleGenerator::setUniform ( const std::vector< double > &  TIB_EstimatedValuesMin,
const std::vector< double > &  TIB_EstimatedValuesMax,
std::vector< bool > &  uniformTIB 
)
private

Method used to determine whether to generate with a uniform distribution for each layer.

Definition at line 39 of file SiStripLorentzAngleGenerator.cc.

References bookConverter::max, and min().

Referenced by createObject().

39  {
40  if( estimatedValuesMax.size() != 0 ) {
41  std::vector<double>::const_iterator min = estimatedValuesMin.begin();
42  std:: vector<double>::const_iterator max = estimatedValuesMax.begin();
43  std::vector<bool>::iterator uniformIt = uniform.begin();
44  for( ; min != estimatedValuesMin.end(); ++min, ++max, ++uniformIt ) {
45  if( *min != *max ) *uniformIt = true;
46  }
47  }
48 }
T min(T a, T b)
Definition: MathUtil.h:58

Member Data Documentation

float SiStripLorentzAngleGenerator::hallMobility_
private

Definition at line 33 of file SiStripLorentzAngleGenerator.h.

Referenced by createObject(), and setHallMobility().