comparison OrthancServer/Sources/ServerContext.cpp @ 5176:6d8647122ef3

cont
author Sebastien Jodogne <s.jodogne@gmail.com>
date Fri, 24 Mar 2023 19:10:00 +0100
parents 9f16979b6124
children 65b05b44ae4c
comparison
equal deleted inserted replaced
5175:48005e522bd6 5176:6d8647122ef3
549 bool hasTransferSyntax = dicom.LookupTransferSyntax(transferSyntax); 549 bool hasTransferSyntax = dicom.LookupTransferSyntax(transferSyntax);
550 550
551 DicomMap summary; 551 DicomMap summary;
552 dicom.GetSummary(summary); // -> from Orthanc 1.11.1, this includes the leaf nodes and sequences 552 dicom.GetSummary(summary); // -> from Orthanc 1.11.1, this includes the leaf nodes and sequences
553 553
554 std::set<DicomTag> allMainDicomTags = DicomMap::GetAllMainDicomTags(); 554 std::set<DicomTag> allMainDicomTags;
555 DicomMap::GetAllMainDicomTags(allMainDicomTags);
555 556
556 try 557 try
557 { 558 {
558 MetricsRegistry::Timer timer(GetMetricsRegistry(), "orthanc_store_dicom_duration_ms"); 559 MetricsRegistry::Timer timer(GetMetricsRegistry(), "orthanc_store_dicom_duration_ms");
559 StorageAccessor accessor(area_, &storageCache_, GetMetricsRegistry()); 560 StorageAccessor accessor(area_, &storageCache_, GetMetricsRegistry());