CMS 3D CMS Logo

List of all members | Public Types | Public Member Functions | Private Member Functions | Private Attributes
popcon::SiStripPopConHandlerUnitTestNoise< T > Class Template Reference

#include <SiStripPopConHandlerUnitTestNoise.h>

Inheritance diagram for popcon::SiStripPopConHandlerUnitTestNoise< T >:
popcon::PopConSourceHandler< T >

Public Types

enum  DataType {
  UNDEFINED =0, _Cabling =1, _Pedestal =2, _Noise =3,
  _Threshold =4, _BadStrip =5, _Gain =6
}
 
- Public Types inherited from popcon::PopConSourceHandler< T >
typedef std::vector< TripletContainer
 
typedef std::vector< std::pair< T *, cond::Time_t > > OldContainer
 
typedef PopConSourceHandler< Tself
 
typedef cond::Summary Summary
 
typedef cond::Time_t Time_t
 
typedef T value_type
 

Public Member Functions

void getNewObjects () override
 
std::string id () const override
 
 SiStripPopConHandlerUnitTestNoise (const edm::ParameterSet &pset)
 
 ~SiStripPopConHandlerUnitTestNoise () override
 
- Public Member Functions inherited from popcon::PopConSourceHandler< T >
void convertFromOld ()
 
SummarydummySummary (typename OldContainer::value_type const &) const
 
void initialize (const cond::persistency::Session &dbSession, cond::TagInfo_t const &tagInfo, cond::LogDBEntry_t const &logDBEntry)
 
Ref lastPayload () const
 
cond::LogDBEntry_t const & logDBEntry () const
 
std::pair< Container const *, std::string const > operator() (const cond::persistency::Session &session, cond::TagInfo_t const &tagInfo, cond::LogDBEntry_t const &logDBEntry) const
 
 PopConSourceHandler ()
 
Container const & returnData ()
 
void sort ()
 
cond::TagInfo_t const & tagInfo () const
 
std::string const & userTextLog () const
 
virtual ~PopConSourceHandler ()
 

Private Member Functions

void fillObject (T *&obj)
 
DataType getDataType ()
 
bool isTransferNeeded ()
 
void setForTransfer ()
 

Private Attributes

edm::Service< SiStripCondObjBuilderFromDbcondObjBuilder
 
bool m_debugMode
 
std::string m_name
 
unsigned long long m_since
 

Additional Inherited Members

- Protected Member Functions inherited from popcon::PopConSourceHandler< T >
int add (value_type *payload, Summary *summary, Time_t time)
 
cond::persistency::SessiondbSession () const
 
- Protected Attributes inherited from popcon::PopConSourceHandler< T >
OldContainer m_to_transfer
 
std::string m_userTextLog
 

Detailed Description

template<typename T>
class popcon::SiStripPopConHandlerUnitTestNoise< T >

Definition at line 35 of file SiStripPopConHandlerUnitTestNoise.h.

Member Enumeration Documentation

Constructor & Destructor Documentation

Definition at line 42 of file SiStripPopConHandlerUnitTestNoise.h.

template<typename T >
popcon::SiStripPopConHandlerUnitTestNoise< T >::~SiStripPopConHandlerUnitTestNoise ( )
inlineoverride

Definition at line 49 of file SiStripPopConHandlerUnitTestNoise.h.

49 {};

Member Function Documentation

template<typename T >
void popcon::SiStripPopConHandlerUnitTestNoise< T >::fillObject ( T *&  obj)
inlineprivate

Definition at line 177 of file SiStripPopConHandlerUnitTestNoise.h.

References KineDebug3::count(), edm::FileInPath::fullPath(), matplotRender::reader, and digitizers_cfi::strip.

Referenced by popcon::SiStripPopConHandlerUnitTestNoise< T >::setForTransfer().

177  {
178 
179 
180  if(typeid(T)==typeid(SiStripNoises)){
181 
182 
183  obj = new SiStripNoises();
184 
185  edm::FileInPath fp_("CalibTracker/SiStripCommon/data/SiStripDetInfo.dat");
186  SiStripDetInfoFileReader reader(fp_.fullPath());
187 
188  const std::map<uint32_t, SiStripDetInfoFileReader::DetInfo >& DetInfos = reader.getAllData();
189 
190  int count=-1;
191  for(std::map<uint32_t, SiStripDetInfoFileReader::DetInfo >::const_iterator it = DetInfos.begin(); it != DetInfos.end(); it++){
192  count++;
193  //Generate Noise for det detid
194  SiStripNoises::InputVector theSiStripVector;
195  for(int strip=0; strip<128*it->second.nApvs; ++strip){
196 
197  float MeanNoise = 5;
198  float RmsNoise = 1;
199 
200  float noise = CLHEP::RandGauss::shoot(MeanNoise,RmsNoise);
201 
202  //double badStripProb = .5;
203  //bool disable = (CLHEP::RandFlat::shoot(1.) < badStripProb ? true:false);
204 
205  obj->setData(noise,theSiStripVector);
206  if (count<6)
207  edm::LogInfo("SiStripNoisesBuilder") << "detid " << it->first << " \t"
208  << " strip " << strip << " \t"
209  << noise << " \t"
210  << theSiStripVector.back()/10 << " \t"
211  << std::endl;
212  }
213 
214  if ( ! obj->put(it->first,theSiStripVector) )
215  edm::LogError("SiStripNoisesBuilder")<<"[SiStripNoisesBuilder::analyze] detid already exists"<<std::endl;
216  }
217  }
218  }
std::vector< uint16_t > InputVector
Definition: SiStripNoises.h:53
long double T
template<typename T >
DataType popcon::SiStripPopConHandlerUnitTestNoise< T >::getDataType ( )
inlineprivate

Definition at line 99 of file SiStripPopConHandlerUnitTestNoise.h.

References popcon::SiStripPopConHandlerUnitTestNoise< T >::_Cabling, popcon::SiStripPopConHandlerUnitTestNoise< T >::m_name, dataset::name, and popcon::SiStripPopConHandlerUnitTestNoise< T >::UNDEFINED.

99  {
100 
101  if(typeid(T)==typeid(SiStripFedCabling)){
102  edm::LogInfo ("SiStripPopPopConConfigDbObjHandler") << "[getDataType] for PopCon application " << m_name << " " << typeid(T).name();
103  return _Cabling;
104  }
105  return UNDEFINED;
106  }
Contains cabling info at the device level, including DetId, APV pair numbers, hardware addresses...
long double T
template<typename T >
void popcon::SiStripPopConHandlerUnitTestNoise< T >::getNewObjects ( )
inlineoverridevirtual

Implements popcon::PopConSourceHandler< T >.

Definition at line 53 of file SiStripPopConHandlerUnitTestNoise.h.

References cond::LogDBEntry_t::destinationDB, cond::LogDBEntry_t::execmessage, cond::LogDBEntry_t::exectime, cond::LogDBEntry_t::iovtag, cond::LogDBEntry_t::iovtimetype, popcon::SiStripPopConHandlerUnitTestNoise< T >::isTransferNeeded(), cond::TagInfo_t::lastInterval, cond::TagInfo_t::lastPayloadToken, popcon::PopConSourceHandler< T >::logDBEntry(), cond::LogDBEntry_t::logId, popcon::SiStripPopConHandlerUnitTestNoise< T >::m_debugMode, popcon::SiStripPopConHandlerUnitTestNoise< T >::m_name, cond::TagInfo_t::name, cond::LogDBEntry_t::payloadClass, cond::LogDBEntry_t::payloadIdx, cond::LogDBEntry_t::payloadToken, cond::LogDBEntry_t::provenance, popcon::SiStripPopConHandlerUnitTestNoise< T >::setForTransfer(), cond::TagInfo_t::size, findQualityFiles::size, popcon::PopConSourceHandler< T >::tagInfo(), cond::TagInfo_t::token, cond::LogDBEntry_t::usertext, and popcon::PopConSourceHandler< T >::userTextLog().

53  {
54  edm::LogInfo ("SiStripPopPopConConfigDbObjHandler") << "[getNewObjects] for PopCon application " << m_name;
55 
56  if (m_debugMode){
57  std::stringstream ss;
58  ss << "\n\n------- " << m_name
59  << " - > getNewObjects\n";
60  if (this->tagInfo().size){
61  //check whats already inside of database
62  ss << "got offlineInfo"<<
63  this->tagInfo().name << ", size " << this->tagInfo().size << " " << this->tagInfo().token
64  << " , last object valid since "
65  << this->tagInfo().lastInterval.first << " token "
66  << this->tagInfo().lastPayloadToken << "\n\n UserText " << this->userTextLog()
67  << "\n LogDBEntry \n"
68  << this->logDBEntry().logId<< "\n"
69  << this->logDBEntry().destinationDB<< "\n"
70  << this->logDBEntry().provenance<< "\n"
71  << this->logDBEntry().usertext<< "\n"
72  << this->logDBEntry().iovtag<< "\n"
73  << this->logDBEntry().iovtimetype<< "\n"
74  << this->logDBEntry().payloadIdx<< "\n"
75  << this->logDBEntry().payloadClass<< "\n"
76  << this->logDBEntry().payloadToken<< "\n"
77  << this->logDBEntry().exectime<< "\n"
78  << this->logDBEntry().execmessage<< "\n"
79  << "\n\n-- user text " << this->logDBEntry().usertext.substr(this->logDBEntry().usertext.find_last_of("@")) ;
80  } else {
81  ss << " First object for this tag ";
82  }
83  edm::LogInfo ("SiStripPopPopConConfigDbObjHandler") << ss.str();
84  }
85  if (isTransferNeeded())
87 
88  edm::LogInfo ("SiStripPopPopConConfigDbObjHandler") << "[getNewObjects] for PopCon application " << m_name << " Done\n--------------\n";
89  }
size
Write out results.
std::string const & userTextLog() const
unsigned long long logId
Definition: Types.h:93
std::string provenance
Definition: Types.h:95
std::string payloadToken
Definition: Types.h:102
size_t size
Definition: Types.h:78
std::string execmessage
Definition: Types.h:104
std::string name
Definition: Types.h:74
cond::ValidityInterval lastInterval
Definition: Types.h:76
std::string payloadClass
Definition: Types.h:101
cond::LogDBEntry_t const & logDBEntry() const
std::string destinationDB
Definition: Types.h:94
std::string exectime
Definition: Types.h:103
std::string lastPayloadToken
Definition: Types.h:77
unsigned int payloadIdx
Definition: Types.h:99
std::string usertext
Definition: Types.h:96
std::string token
Definition: Types.h:75
cond::TagInfo_t const & tagInfo() const
std::string iovtimetype
Definition: Types.h:98
std::string iovtag
Definition: Types.h:97
template<typename T >
std::string popcon::SiStripPopConHandlerUnitTestNoise< T >::id ( void  ) const
inlineoverridevirtual
template<typename T >
bool popcon::SiStripPopConHandlerUnitTestNoise< T >::isTransferNeeded ( )
inlineprivate

Definition at line 112 of file SiStripPopConHandlerUnitTestNoise.h.

References cond::LogDBEntry_t::destinationDB, cond::TagInfo_t::lastInterval, popcon::PopConSourceHandler< T >::logDBEntry(), popcon::PopConSourceHandler< T >::m_userTextLog, cond::LogDBEntry_t::payloadClass, findQualityFiles::size, popcon::PopConSourceHandler< T >::tagInfo(), and cond::LogDBEntry_t::usertext.

Referenced by popcon::SiStripPopConHandlerUnitTestNoise< T >::getNewObjects().

112  {
113 
114 
115  edm::LogInfo ("SiStripPopPopConConfigDbObjHandler") << "[isTransferNeeded] checking for transfer" << std::endl;
116  std::stringstream ss_logdb, ss;
117  std::stringstream ss1;
118 
119  //get log information from previous upload
120  if (this->tagInfo().size)
121  ss_logdb << this->logDBEntry().usertext.substr(this->logDBEntry().usertext.find_last_of("@"));
122  else
123  ss_logdb << "";
124 
125  ss << "@ " << clock() ;
126 
127  if (!strcmp(ss.str().c_str(),ss_logdb.str().c_str())){
128  //string are equal, no need to do transfer
129  edm::LogInfo ("SiStripPopPopConConfigDbObjHandler")
130  << "[isTransferNeeded] the selected conditions are already uploaded in the last iov ("
131  << this->tagInfo().lastInterval.first << ") open for the object "
132  << this->logDBEntry().payloadClass << " in the db "
133  << this->logDBEntry().destinationDB << " parameters: " << ss.str() << "\n NO TRANSFER NEEDED";
134  return false;
135  }
136  this->m_userTextLog = ss.str();
137  edm::LogInfo ("SiStripPopPopConConfigDbObjHandler")
138  << "[isTransferNeeded] the selected conditions will be uploaded: " << ss.str()
139  << "\n A- "<< ss.str() << "\n B- " << ss_logdb.str() << "\n Fine";
140 
141  return true;
142  }
size
Write out results.
cond::ValidityInterval lastInterval
Definition: Types.h:76
std::string payloadClass
Definition: Types.h:101
cond::LogDBEntry_t const & logDBEntry() const
std::string destinationDB
Definition: Types.h:94
std::string usertext
Definition: Types.h:96
cond::TagInfo_t const & tagInfo() const
template<typename T >
void popcon::SiStripPopConHandlerUnitTestNoise< T >::setForTransfer ( )
inlineprivate

Definition at line 147 of file SiStripPopConHandlerUnitTestNoise.h.

References popcon::SiStripPopConHandlerUnitTestNoise< T >::fillObject(), cond::TagInfo_t::lastInterval, popcon::SiStripPopConHandlerUnitTestNoise< T >::m_debugMode, popcon::SiStripPopConHandlerUnitTestNoise< T >::m_name, popcon::SiStripPopConHandlerUnitTestNoise< T >::m_since, popcon::PopConSourceHandler< T >::m_to_transfer, dataset::name, haddnano::obj, findQualityFiles::size, and popcon::PopConSourceHandler< T >::tagInfo().

Referenced by popcon::SiStripPopConHandlerUnitTestNoise< T >::getNewObjects().

147  {
148  edm::LogInfo ("SiStripPopPopConConfigDbObjHandler") << "[setForTransfer] " << m_name << " getting data to be transferred " << std::endl;
149 
150  T *obj=nullptr;
151 
152  fillObject(obj);
153 
154  if(!this->tagInfo().size)
155  m_since=1;
156  else
157  if (m_debugMode)
158  m_since=this->tagInfo().lastInterval.first+1;
159 
160  if (obj!=nullptr){
161 
162  edm::LogInfo ("SiStripPopPopConConfigDbObjHandler") <<"setting since = "<< m_since <<std::endl;
163  this->m_to_transfer.push_back(std::make_pair(obj,m_since));
164  }else{
165  edm::LogError ("SiStripPopPopConConfigDbObjHandler") <<"[setForTransfer] " << m_name << " : NULL pointer of obj " << typeid(T).name() << " reported by SiStripCondObjBuilderFromDb\n Transfer aborted"<<std::endl;
166  }
167  }
size
Write out results.
cond::ValidityInterval lastInterval
Definition: Types.h:76
long double T
cond::TagInfo_t const & tagInfo() const

Member Data Documentation

template<typename T >
edm::Service<SiStripCondObjBuilderFromDb> popcon::SiStripPopConHandlerUnitTestNoise< T >::condObjBuilder
private

Definition at line 174 of file SiStripPopConHandlerUnitTestNoise.h.

template<typename T >
bool popcon::SiStripPopConHandlerUnitTestNoise< T >::m_debugMode
private
template<typename T >
std::string popcon::SiStripPopConHandlerUnitTestNoise< T >::m_name
private
template<typename T >
unsigned long long popcon::SiStripPopConHandlerUnitTestNoise< T >::m_since
private