CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
FittedEntriesSet.cc
Go to the documentation of this file.
1 // COCOA class implementation file
2 //Id: FittedEntriesSet.cc
3 //CAT: Model
4 //
5 // History: v1.0
6 // Pedro Arce
7 
8 #include <fstream>
9 #include <map>
15 
16 #ifdef MAT_MESCHACH
18 #endif
19 //
20 //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@2
22 {
23  //- theTime = Model::MeasurementsTime();
26 
28  theEntriesErrorMatrix = AtWAMatrix;
29 
30  Fill();
31 
32 }
33 
34 
35 //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@2
36 FittedEntriesSet::FittedEntriesSet( std::vector<ALIstring> wl )
37 {
38  //- theTime = Model::MeasurementsTime();
39  theDate = wl[0];
40  theTime = "99:99";
41 
44 
45  FillEntriesFromFile( wl );
46 
47 }
48 
49 //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
50 FittedEntriesSet::FittedEntriesSet( std::vector<FittedEntriesSet*> vSets )
51 {
52  theDate = "99/99/99";
53  theTime = "99:99";
54 
57 
58  FillEntriesAveragingSets( vSets );
59 
60 }
61 
62 
63 //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@2
65 {
66 
67  FillEntries( );
69 
70 }
71 
72 
73 //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@2
75 {
76  //---------- Store Fitted Entries
77  //----- Iterate over entry list
78  std::vector<Entry*>::const_iterator vecite;
79  for ( vecite = Model::EntryList().begin();
80  vecite != Model::EntryList().end(); vecite++ ) {
81  //--- Only for good quality parameters (='unk')
82  if ( (*vecite)->quality() >= theMinEntryQuality ) {
83  // ALIdouble dimv = (*vecite)->ValueDimensionFactor();
84  // ALIdouble dims = (*vecite)->SigmaDimensionFactor();
85  ALIint ipos = (*vecite)->fitPos();
86  FittedEntry* fe = new FittedEntry( (*vecite), ipos, sqrt(theEntriesErrorMatrix->Mat()->me[ipos][ipos]));
87  //- std::cout << fe << "IN fit FE " << fe->theValue<< " " << fe->Sigma()<< " " << sqrt(theEntriesErrorMatrix->Mat()->me[NoEnt][NoEnt]) / dims<< std::endl;
88  theFittedEntries.push_back( fe );
89  }
90  }
91 
92 }
93 
94 
95 //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@2
97 {
98  //------ Count the number of entries that will be in the set
99  ALIuint nent = 0;
100  std::vector<Entry*>::const_iterator vecite;
101  for ( vecite = Model::EntryList().begin();
102  vecite != Model::EntryList().end(); vecite++ ) {
103  if((*vecite)->quality() > theMinEntryQuality ) {
104  nent++;
105  }
106  }
107 
108  CreateCorrelationMatrix( nent );
109  //---------- Store correlations
110  ALIuint ii;
111  for( ii = 0; ii < nent; ii++) {
112  for(ALIuint jj = ii+1; jj < nent; jj++) {
113  ALIdouble corr = theEntriesErrorMatrix->Mat()->me[ii][jj];
114  if (corr != 0) {
115  corr /= ( sqrt(theEntriesErrorMatrix->Mat()->me[ii][ii])
116  / sqrt(theEntriesErrorMatrix->Mat()->me[jj][jj]) );
118  }
119  }
120  }
121 
122 }
123 
124 
125 //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@2
127 {
128 
129  std::vector<ALIdouble> vd( nent, 0.);
130  std::vector< std::vector<ALIdouble> > vvd( nent, vd);
132 
133 }
134 
135 
136 //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@2
137 void FittedEntriesSet::FillEntriesFromFile( std::vector<ALIstring> wl)
138 {
139 
140  ALIuint siz = wl.size();
141  for( ALIuint ii = 1; ii< siz; ii+=3 ) {
142  FittedEntry* fe = new FittedEntry( wl[ii], ALIUtils::getFloat(wl[ii+1]), ALIUtils::getFloat(wl[ii+2]));
143  theFittedEntries.push_back( fe );
144  }
145 
146 }
147 
148 
149 //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@2
150 void FittedEntriesSet::FillEntriesAveragingSets( std::vector<FittedEntriesSet*> vSets )
151 {
152 
153  std::vector<FittedEntry*> vFEntry;
154  ALIuint nEntry = vSets[0]->FittedEntries().size();
155  // ALIuint setssiz = vSets.size();
156  for( ALIuint ii = 0; ii < nEntry; ii++ ){ // loop to FittedEntry's
157  if(ALIUtils::debug >= 5) std::cout << "FillEntriesAveragingSets entry " << ii << std::endl;
158  vFEntry.clear();
159  for( ALIuint jj = 0; jj < vSets.size(); jj++ ){ // look for FittedEntry ii in each Sets
160  if(ALIUtils::debug >= 5) std::cout << "FillEntriesAveragingSets set " << jj << std::endl;
161  //----- Check all have the same number of entries
162  if( vSets[jj]->FittedEntries().size() != nEntry ){
163  std::cerr << "!!! FATAL ERROR FittedEntriesSet::FillEntriesAveragingSets set number " << jj
164  << " has different number of entries = "
165  << vSets[jj]->FittedEntries().size()
166  << " than first set = " << nEntry << std::endl;
167  exit(1);
168  }
169 
170  vFEntry.push_back( vSets[jj]->FittedEntries()[ii] );
171  }
172  FittedEntry* fe = new FittedEntry( vFEntry );
173  if(ALIUtils::debug >= 5) std::cout << "FillEntriesAveragingSets new fentry " << fe->getValue() << " " << fe->getSigma() << std::endl;
174  theFittedEntries.push_back( fe );
175  }
176 
177 
178 }
179 
180 
181 //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@2
183 {
184  if(ALIUtils::debug >= 5) std::cout << " FittedEntriesSet::SetOptOEntries " << theFittedEntries.size() << std::endl;
185 
186  std::vector< FittedEntry* >::const_iterator ite;
187  for( ite = theFittedEntries.begin();ite != theFittedEntries.end();ite++){
188  FittedEntry* fe = (*ite);
191  entry->setValue( fe->getValue() );
192  entry->setSigma( fe->getSigma() );
193 
194  if(ALIUtils::debug >= 5) std::cout << " FittedEntriesSet::SetOptOEntries() " << opto->name() << " " << entry->name() << std::endl;
195  opto->setGlobalCoordinates();
196  opto->setOriginalEntryValues();
197  }
198 }
long double ALIdouble
Definition: CocoaGlobals.h:11
void FillEntriesAveragingSets(std::vector< FittedEntriesSet * > vSets)
std::vector< std::vector< ALIdouble > > theCorrelationMatrix
Definition: Entry.h:18
static ALIstring getCurrentTime()
Definition: Measurement.h:155
std::vector< FittedEntry * > theFittedEntries
MatrixMeschach * theEntriesErrorMatrix
ALIstring getOptOName() const
Definition: FittedEntry.h:30
int ALIint
Definition: CocoaGlobals.h:15
static OpticalObject * getOptOByName(const ALIstring &opto_name)
--— Find an OptO name in theOptOList and return a pointer to it
Definition: Model.cc:578
void setValue(ALIdouble val)
Definition: Entry.h:77
static ALIint debug
Definition: ALIUtils.h:35
void FillEntriesFromFile(std::vector< ALIstring > wl)
static std::vector< Entry * > & EntryList()
Definition: Model.h:75
static ALIstring getCurrentDate()
Definition: Measurement.h:152
std::vector< std::vector< DeviationSensor2D * > > vvd
static Entry * getEntryByName(const ALIstring &opto_name, const ALIstring &entry_name)
--— Search an Entry name in the Entry* list and return a pointer to it
Definition: Model.cc:633
void setOriginalEntryValues()
static double getFloat(const ALIstring &str)
Convert a string to an float, checking that it is really a number.
Definition: ALIUtils.cc:404
std::vector< DeviationSensor2D * > vd
T sqrt(T t)
Definition: SSEVec.h:46
std::pair< std::string, MonitorElement * > entry
Definition: ME_MAP.h:8
FittedEntriesSet(MatrixMeschach *AtWAMatrix)
ALIdouble getSigma() const
Definition: FittedEntry.h:42
std::vector< FittedEntry * > & FittedEntries()
const MAT * Mat() const
ALIstring getEntryName() const
Definition: FittedEntry.h:33
JetCorrectorParameters corr
Definition: classes.h:9
void CreateCorrelationMatrix(const ALIuint nent)
#define begin
Definition: vmac.h:31
tuple cout
Definition: gather_cfg.py:121
const ALIstring & name() const
Definition: OpticalObject.h:60
ALIdouble getValue() const
Definition: FittedEntry.h:39
void setGlobalCoordinates()
unsigned int ALIuint
Definition: CocoaGlobals.h:17