ATLAS Offline Software
Loading...
Searching...
No Matches
CaloWriteNoise.cxx
Go to the documentation of this file.
1
4
13
14#include <iostream>
15#include <iomanip>
16#include <climits>
17#include <fstream>
18
19#include <boost/program_options.hpp>
20
21#include <chai/Database.h>
22#include <chai/Container.h>
23#include <chai/Log.h>
24#include <chai/Types.h>
26
27#define ENCODE_RUNLUMIBLOCK(run, lumiblock) (static_cast<uint64_t>(run) << 32) | static_cast<uint64_t>(lumiblock)
28#define DECODE_RUN(since) static_cast<uint32_t>(since >> 32)
29#define DECODE_LUMIBLOCK(since) static_cast<uint32_t>(since & 0xFFFFFFFF)
30#define NUM_SCELLS 34048
31#define NORM_FACTOR_DT25 29.
32#define NORM_FACTOR_DT50 53.
33
34
35// Method to convert coral::Blob to BlobData
36chai::BlobData blobToBlobData(const coral::Blob& coralBlob) {
37 const void* data = coralBlob.startingAddress();
38 long size = coralBlob.size();
39
40 // Create vector and copy data
41 std::vector<uint8_t> bytes(size);
42 if (size > 0 && data != nullptr) {
43 memcpy(bytes.data(), data, size);
44 }
45
46 return chai::BlobData(std::move(bytes));
47}
48
49coral::Blob BlobDataToBlob(const chai::BlobData& blob) {
50 long size = blob.m_bytes.size();
51 coral::Blob data(size);
52 if(size > 0) {
53 memcpy(data.startingAddress(), blob.m_bytes.data(), size);
54 }
55
56 return data;
57}
58//coverity[UNCAUGHT_EXCEPT]
59int main(int argc, char ** argv) {
60
61 boost::program_options::options_description description( "Options" );
62
63 description.add_options()
64 ( "help,h", "produce help message" )
65 ( "runstart,r", boost::program_options::value<uint32_t>()->default_value(0), "run number to start IOV" )
66 ( "lbstart,l", boost::program_options::value<uint32_t>()->default_value(0), "lumi block to start IOV" )
67 ( "runend,R", boost::program_options::value<uint32_t>()->default_value(0), "run number to end IOV (infty if 0)" )
68 ( "lbend,L", boost::program_options::value<uint32_t>()->default_value(0), "lumi block to end IOV (infty if 0)" )
69 ( "input,i", boost::program_options::value<std::string>()->default_value("calonoise.txt"), "name of input text file" )
70 ( "output,t", boost::program_options::value<std::string>()->default_value(""), "name of output text file" )
71 ( "mu,,", boost::program_options::value<uint32_t>()->default_value(0), "mu for which to fill noise" )
72 ( "dt,,", boost::program_options::value<float>()->default_value(25.), "bunch spacing to use" )
73 ( "folder,f", boost::program_options::value<std::string>()->default_value("/LAR/NoiseOfl/CellNoise"), "name of Folder" )
74 ( "tag,a", boost::program_options::value<std::string>()->default_value("LARNoiseOflCellNoisenoise-mc16-EposA3-ofc25mu140-25ns"), "name of folder tag" )
75 ( "crest,C", boost::program_options::value<std::string>()->default_value(""), "CREST URL string for storing" )
76 ( "crestfs,c", boost::program_options::value<std::string>()->default_value("/tmp/crest"), "CREST FS string for storing" )
77 ( "globalTag,g", boost::program_options::value<std::string>()->default_value(""), "Global tag in CREST" )
78 ( "head,H", boost::program_options::bool_switch()->default_value(false), "Use HEAD tag" )
79 ( "loglevel,o", boost::program_options::value<int>()->default_value(3), "chai logLevel" )
80 ( "readonly,D", boost::program_options::bool_switch()->default_value(false), "Only read the DB" );
81
82 boost::program_options::variables_map arguments;
83 try {
84 boost::program_options::store( boost::program_options::parse_command_line( argc, argv, description ), arguments );
85 boost::program_options::notify( arguments );
86 }
87 catch ( boost::program_options::error & ex ) {
88 std::cerr << ex.what() << std::endl;
89 description.print( std::cout );
90 return 1;
91 }
92
93 if ( arguments.count("help") ) {
94 std::cout << "LAr noise filling application" << std::endl;
95 description.print( std::cout );
96 return 0;
97 }
98
99 chai::setLogLevel(static_cast<chai::LogLevel>(arguments["loglevel"].as<int>()));
100
101 std::string globalTag(arguments["globalTag"].as<std::string>());
102 std::string folder(arguments["folder"].as<std::string>());
103 std::string ftag(arguments["tag"].as<std::string>());
104 bool isRead(arguments["readonly"].as<bool>());
105 unsigned int runs(arguments["runstart"].as<uint32_t>());
106 unsigned int rune=(arguments["runend"].as<uint32_t>()) > 0 ? arguments["runend"].as<uint32_t>() : UINT_MAX;
107 unsigned int lbs=(arguments["lbstart"].as<uint32_t>());
108 unsigned int lbe=(arguments["lbend"].as<uint32_t>()) > 0 ? arguments["lbend"].as<uint32_t>() : UINT_MAX;
109 unsigned int mu=(arguments["mu"].as<uint32_t>());
110 float dt=(arguments["dt"].as<float>());
111 std::string server(arguments["crest"].as<std::string>());
112 std::string fsdir(arguments["crestfs"].as<std::string>());
113
114 if(!isRead){
115 // read the input file
116 std::vector<std::pair<float,float> > noisetable;
117 std::ifstream inpf(arguments["input"].as<std::string>());
118 // SC case
119 // assuming onlId subHash gain noiseA noiseB
120 unsigned int chanId, subh, igain;
121 unsigned int prevId=0;
122 float noisea=0, noiseb=0.;
123 while(inpf >> chanId >> subh >> igain >> noisea >> noiseb) {
124 if(igain != 0 || chanId <= prevId) { //something wrong
125 std::cout<<"Wrong line in input file, starting with "<<chanId<<std::endl;
126 continue;
127 }
128 noisetable.push_back(std::make_pair(noisea, noiseb));
129 prevId=chanId;
130 }
131 if(noisetable.size() != NUM_SCELLS) {
132 std::cout<<"Bad length of noise values, exiting !!"<<std::endl;
133 return -1;
134 } else {
135 std::cout<<"Read out " << NUM_SCELLS << " noise values"<<std::endl;
136 inpf.close();
137 }
138
139 // Create CaloBlobs to write out
140 coral::Blob blob(5*sizeof(uint32_t)+2*noisetable.size()*sizeof(float));
141 // filling the proper type
142 uint32_t* pDestination = static_cast<uint32_t*> (blob.startingAddress());
143 pDestination[0] = 1;
144
146 //Blob Defintion Vector
147 std::vector<float> gVec;
148 gVec.push_back(0.);//a
149 gVec.push_back(0.);//b
150 std::vector<std::vector<float> > defVec;
151 defVec.push_back(gVec);
152 flt->init(defVec,noisetable.size(),1);
153
154 // Fill the flt
155 for(unsigned h=0; h<noisetable.size(); ++h) {
156 flt->setData(h,0,0,noisetable[h].first);
157 if (mu > 0 && dt > 0) {
158 // new normalization
159 if (dt > 25)
160 flt->setData(h,0,1,noisetable[h].second / std::sqrt(mu/NORM_FACTOR_DT50*10.) ); // multiply by 10. to get units stored in cond DB.
161 else
162 flt->setData(h,0,1,noisetable[h].second / std::sqrt(mu/NORM_FACTOR_DT25*10.) ); // multiply by 10. t o get units stored in cond DB.
163 } else {
164 flt->setData(h,0,1,noisetable[h].second );
165 }
166 }
167
168 // Build the connection string
169 std::string connectionString = (server.size()==0) ? "crest_fs:" + fsdir : "crest:" + server;
170
171 std::cout << "Connecting to: " << connectionString << std::endl << std::endl;
172
173 try {
174 // Connect to CREST database
175 chai::Database db(connectionString);
176
177 // Delete the dest. tag if it exists
178 try {
179 if (db.getTag(ftag)) {
180 db.deleteTag(ftag);
181 }
182 } catch (const std::exception& e) {
183 // Ignore errors
184 }
185
186
187 // 1. Create a tag with payload specification
188 std::cout << "Creating tag "<< ftag << std::endl;
189
190 chai::PayloadSpec spec(
191 chai::FieldSpec({
192 {"CaloCondBlob16M", chai::Blob}
193 }),
194 chai::ChannelSpec({ {0,""} })
195 );
196
197 chai::Tag::Metadata chaiMD{
198 .iovType=chai::Tag::IovType::RunNumberLumiBlock,
199 .objectType="crest-json-single-iov",
200 .synchronization=chai::Tag::Synchronization::All,
201 .status=chai::Tag::Status::Unlocked,
202 .nodeDescription =
203 chai::Tag::buildNodeDescription(
204 chai::Tag::IovType::RunNumberLumiBlock,
205 "CondAttrListCollection",
206 1238547719u
207 )
208 };
209 auto tag = db.createTag(
210 ftag,
211 "SC noise tag",
212 spec,
213 chaiMD
214 );
215
216 std::cout << "Tag created: " << tag->getName() << std::endl;
217 std::cout << "IOV Type: RunNumberLumiBlock" << std::endl;
218
219 // 2. Create container
220
221 chai::Container container(spec);
222
223 container[0].push(chai::BlobData(blobToBlobData(blob)));
224
225 std::cout << "Container created with " << container.numChannels() << " channels" << std::endl;
226
227 // 3. Write IOVs for selected run/lumiblock interval
228 std::cout << "Writing IOVs for selected run/lumiblock interval..." << std::endl;
229
230 // IOV:
231 uint64_t since = ENCODE_RUNLUMIBLOCK(runs, lbs);
232 uint64_t until = ENCODE_RUNLUMIBLOCK(rune, lbe);
233 tag->addPayload(container, since, until);
234
235 std::cout << "All IOVs written successfully!" << std::endl << std::endl;
236 } catch (const std::exception& e) {
237 std::cerr << std::endl << "Error: " << e.what() << std::endl;
238 return 1;
239 }
240
241 }
242 try {
243 // ====================================================================
244 // READ SECTION
245 // ====================================================================
246 std::cout << "================================================================================" << std::endl;
247 std::cout << "READ: Retrieving Tag and Reading Back Payloads" << std::endl;
248 std::cout << "================================================================================" << std::endl;
249 // Build the connection string
250 std::string connectionString = (server.size()==0) ? "crest_fs:" + fsdir : "crest:" + server;
251
252 std::cout << "Connecting to: " << connectionString << std::endl << std::endl;
253
254 chai::Database db(connectionString);
255
256 // 1. Get tag by name
257 std::cout << "Getting tag by name "<<ftag<<" ..." << std::endl;
258 auto retrievedTag = db.getTag(ftag);
259 std::cout << "Tag retrieved: " << retrievedTag->getName() << std::endl;
260 std::cout << "Description: " << retrievedTag->getDescription() << std::endl;
261 std::cout << "Number of IOVs: " << retrievedTag->getSize() << std::endl;
262
263 // 2. Read back IOVs from tag
264 std::cout << "Iterating over IOVs and payloads..." << std::endl << std::endl;
265
266 // 3. Open output file if asked
267 std::ofstream onpf;
268 if(arguments["output"].as<std::string>().size()>0) onpf.open(arguments["output"].as<std::string>());
269
270 for (const auto& iov : retrievedTag->getIovs(0)) {
271 uint64_t since = iov.getSince();
272 uint32_t run = DECODE_RUN(since);
273 uint32_t lumiblock = DECODE_LUMIBLOCK(since);
274
275 std::cout << "IOV: Run " << run << ", Lumiblock " << lumiblock << " (encoded: " << since << ")" << std::endl;
276 std::cout << " Payload hash: " << iov.getPayloadHash().substr(0, 16) << "..." << std::endl;
277
278 // 3. Get payload as a container
279 auto payloadContainer = retrievedTag->getPayload(iov.getPayloadHash());
280
281 std::cout << " Payload has " << payloadContainer.numChannels() << " channel(s)" << std::endl;
282
283 // 4. For each channel, print values and access by name
284 for (uint64_t channelId : payloadContainer.channelIds()) {
285
286 // Access by index (positional)
287 if(payloadContainer.hasChannel(channelId)) {
288 const auto cblob = BlobDataToBlob(payloadContainer.get<chai::BlobData>(channelId,"CaloCondBlob16M"));
289 std::cout << " Channel " << channelId << " size: " << cblob.size() << std::endl;
291 std::cout << "nGains: " << rflt->getNGains() << " nChannels: " << rflt->getNChans() << std::endl;
292 for(unsigned h=0; h<rflt->getNChans(); ++h) {
293 std::cout<< h << " noisea: " << rflt->getData(h,0,0) << " noiseb: " << rflt->getData(h,0,1) << std::endl;
294 }
295 } else {
296 std::cout << " Channel " << channelId << " does not have data in this IOV" << std::endl;
297 }
298 }
299
300 std::cout << "Done"<<std::endl;
301 }
302
303 } catch (const std::exception& e) {
304 std::cerr << std::endl << "Error: " << e.what() << std::endl;
305 return 1;
306 }
307
308 return 0;
309}
chai::BlobData blobToBlobData(const coral::Blob &coralBlob)
#define DECODE_RUN(since)
#define DECODE_LUMIBLOCK(since)
#define ENCODE_RUNLUMIBLOCK(run, lumiblock)
Copyright (C) 2002-2026 CERN for the benefit of the ATLAS collaboration.
#define NUM_SCELLS
#define NORM_FACTOR_DT25
coral::Blob BlobDataToBlob(const chai::BlobData &blob)
#define NORM_FACTOR_DT50
size_t size() const
Number of registered mappings.
Header file for AthHistogramAlgorithm.
uint32_t getNGains() const
Returns the number of gains stored for each channel.
uint32_t getNChans() const
Returns the number of channels stored in the BLOB.
T getData(const unsigned int channel, const unsigned int adc, const unsigned int idx) const
Returns a single T belonging to a channel/gain.
Class for storing a number of floats (Flt) and functions on those.
static CaloCondBlobFlt * getInstance(coral::Blob &blob)
Returns a pointer to a non-const CaloCondBlobFlt.
std::string description
glabal timer - how long have I taken so far?
Definition hcg.cxx:93
int main()
Definition hello.cxx:18
int run(int argc, char *argv[])