Skip to content

Commit

Permalink
20211009110822
Browse files Browse the repository at this point in the history
  • Loading branch information
fedorov committed Dec 7, 2021
1 parent a8c0a8e commit a7c0231
Show file tree
Hide file tree
Showing 618 changed files with 11,060 additions and 2,670 deletions.
576 changes: 576 additions & 0 deletions CHANGES

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion COPYRIGHT
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 1993-2015, David A. Clunie DBA PixelMed Publishing. All rights reserved.
Copyright (c) 1993-2021, David A. Clunie DBA PixelMed Publishing. All rights reserved.

Redistribution and use in source and binary forms, with or without modification, are
permitted provided that the following conditions are met:
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.00.snapshot.20170109062447
1.00.snapshot.20211009110822
2 changes: 1 addition & 1 deletion appsrc/acrnema/ancp.cc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
static const char *CopyrightIdentifier(void) { return "@(#)ancp.cc Copyright (c) 1993-2015, David A. Clunie DBA PixelMed Publishing. All rights reserved."; }
static const char *CopyrightIdentifier(void) { return "@(#)ancp.cc Copyright (c) 1993-2021, David A. Clunie DBA PixelMed Publishing. All rights reserved."; }
#if USESTANDARDHEADERSWITHOUTEXTENSION == 1
#include <iostream>
#include <iomanip>
Expand Down
2 changes: 1 addition & 1 deletion appsrc/acrnema/ancreate.cc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
static const char *CopyrightIdentifier(void) { return "@(#)ancreate.cc Copyright (c) 1993-2015, David A. Clunie DBA PixelMed Publishing. All rights reserved."; }
static const char *CopyrightIdentifier(void) { return "@(#)ancreate.cc Copyright (c) 1993-2021, David A. Clunie DBA PixelMed Publishing. All rights reserved."; }
#if USESTANDARDHEADERSWITHOUTEXTENSION == 1
#include <iostream>
#include <iomanip>
Expand Down
2 changes: 1 addition & 1 deletion appsrc/acrnema/ancreate.man
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ Should be able to find no differences:
.BR dcintro(3) ,
.BR dcintro(5)
.SH AUTHOR
Copyright (c) 1993-2015, David A. Clunie DBA PixelMed Publishing. All rights reserved.
Copyright (c) 1993-2021, David A. Clunie DBA PixelMed Publishing. All rights reserved.
.SH BUGS
In the attribute descriptions, the group, element, value length, and values are always in hexadecimal format, whether a leading "0x" is present or not. This is because dcdump adopts such a convention, with slightly different output on different platforms and compilers. In particular lib-g++ does not output the "x" in hexadecimal formats :(
.LP
Expand Down
17 changes: 12 additions & 5 deletions appsrc/acrnema/andump.cc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
static const char *CopyrightIdentifier(void) { return "@(#)andump.cc Copyright (c) 1993-2015, David A. Clunie DBA PixelMed Publishing. All rights reserved."; }
static const char *CopyrightIdentifier(void) { return "@(#)andump.cc Copyright (c) 1993-2021, David A. Clunie DBA PixelMed Publishing. All rights reserved."; }
#if USESTANDARDHEADERSWITHOUTEXTENSION == 1
#include <iostream>
#include <iomanip>
Expand Down Expand Up @@ -257,7 +257,7 @@ doFloatValues(DicomInputStream& in,TextOutputStream& log,Uint32 vl,size_t size)
}

static bool
readAll(DicomInputStream& stream,TextOutputStream& log,ElementDictionary& dict,bool showoffset,ios::fmtflags showoffsetbase,bool ancreate,bool extractCSA)
readAll(DicomInputStream& stream,TextOutputStream& log,ElementDictionary& dict,bool showoffset,ios::fmtflags showoffsetbase,bool ancreate,bool extractCSA,bool skipiftoolong)
{
Uint32 n=stream.haveMetaHeader() ? 132 : 0;
Uint32 length=0xffffffff;
Expand Down Expand Up @@ -486,8 +486,13 @@ log << ")"
}
}
else {
Assert(!ancreate);
log << "\t[]\t# skipping ...";
Assert(!ancreate || skipiftoolong);
if (ancreate) {
log << "\t[...]";
}
else {
log << "\t[]\t# skipping ...";
}
stream.seekg(vl,ios::cur);
if (stream.fail()) {
cerr << EMsgDC(SeekFailed) << endl;
Expand Down Expand Up @@ -516,6 +521,7 @@ main(int argc, char *argv[])
bool showfilename=options.get("filename");
bool ancreate=options.get("ancreate");
bool extractCSA=options.get("extractCSA");
bool skipiftoolong=options.get("skipiftoolong");
bool showoffset=false;
ios::fmtflags showoffsetbase;
if (options["showoffset"]||options["showoffset-hex"])
Expand Down Expand Up @@ -543,6 +549,7 @@ main(int argc, char *argv[])
<< input_options.usage()
<< " [-ancreate]"
<< " [-extractCSA]"
<< " [-skipiftoolong]"
<< " [-showoffset|-showoffset-hex"
<< "|-showoffset-octal|-showoffset-oct"
<< "|-showoffset-decimal|-showoffset-dec]"
Expand All @@ -565,5 +572,5 @@ main(int argc, char *argv[])

ElementDictionary dictionary;

readAll(din,log,dictionary,showoffset,showoffsetbase,ancreate,extractCSA);
readAll(din,log,dictionary,showoffset,showoffsetbase,ancreate,extractCSA,skipiftoolong);
}
2 changes: 1 addition & 1 deletion appsrc/acrnema/andump.man
Original file line number Diff line number Diff line change
Expand Up @@ -130,5 +130,5 @@ Show the name of the file supplied in the arguments; a hyphen will be reported i
.BR dcdump(1) ,
.BR dcintro(1)
.SH AUTHOR
Copyright (c) 1993-2015, David A. Clunie DBA PixelMed Publishing. All rights reserved.
Copyright (c) 1993-2021, David A. Clunie DBA PixelMed Publishing. All rights reserved.
.SH BUGS
4 changes: 2 additions & 2 deletions appsrc/dcdisp/dcdisp.cc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
static const char *CopyrightIdentifier(void) { return "@(#)dcdisp.cc Copyright (c) 1993-2015, David A. Clunie DBA PixelMed Publishing. All rights reserved."; }
static const char *CopyrightIdentifier(void) { return "@(#)dcdisp.cc Copyright (c) 1993-2021, David A. Clunie DBA PixelMed Publishing. All rights reserved."; }
//#define PROFILETIME
//#define DYNAMICWINDOW
//#define DONTSENDEXPOSEEVENT
Expand Down Expand Up @@ -449,7 +449,7 @@ ECHOTHETIME("reading");

TextOutputStream log(cerr);
if (verbose) log << "******** While reading ... ********" << endl;
list.read(din,&log,verbose,0xffffffff,true,dicom_input_options.uselengthtoend,dicom_input_options.ignoreoutofordertags,dicom_input_options.useUSVRForLUTDataIfNotExplicit);
list.read(din,false/*newformat*/,&log,verbose,0xffffffff,true,dicom_input_options.uselengthtoend,dicom_input_options.ignoreoutofordertags,dicom_input_options.useUSVRForLUTDataIfNotExplicit);

const char *errors=list.errors();
if (errors) log << errors << flush;
Expand Down
2 changes: 1 addition & 1 deletion appsrc/dcdisp/dcdisp.man
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ Using ...
.SH SEE ALSO
.BR dcintro(1)
.SH AUTHOR
Copyright (c) 1993-2015, David A. Clunie DBA PixelMed Publishing. All rights reserved.
Copyright (c) 1993-2021, David A. Clunie DBA PixelMed Publishing. All rights reserved.
.SH BUGS
Only handles 8-16 bit monochrome, palette color, and rgb photometric interpretations (with color-by-pixel planar configuration) only.
.LP
Expand Down
20 changes: 18 additions & 2 deletions appsrc/dcfile/Imakefile
Original file line number Diff line number Diff line change
Expand Up @@ -509,7 +509,7 @@ InstallManPage(dcckovly,$(INSTALLMANDIR)/man1)

DependCCTarget()

test:: testdchist testy2k testpbmtoovl testdcfile testdccp testantodc testpnmtodc testdcdirdmp testdcdump testdciodvfy testdcposn testpack testdcsrdump testdcunrgb
test:: testdchist testy2k testpbmtoovl testdcfile testdccp testantodc testpnmtodc testdcdirdmp testdcdump testdciodvfy testdciodvfynew testdcposn testpack testdcsrdump testdcunrgb

testpbmtoovl:
@$(TOP)/support/testapp testlist ./pbmtoovl "-overlaygroup 0 -r SOPClassUID 0 -r SOPInstanceUID 0" $(TOP)/images/ovltest $(TOP)/test/$(CURRENT_DIR) compare pbmtoovl
Expand Down Expand Up @@ -570,6 +570,14 @@ testdciodvfy:
@if [ -f $(TOP)/images/osiriscd/dicom/ctspine.dcm ]; then $(TOP)/support/testapp testlist ./dciodvfy "" $(TOP)/images/osiriscd $(TOP)/test/$(CURRENT_DIR) compare iodvfy; fi
@if [ -d $(TOP)/images/wuerlim/version3 ]; then $(TOP)/support/testapp testlist ./dciodvfy "" $(TOP)/images/wuerlim $(TOP)/test/wuerlim/$(CURRENT_DIR) compare iodvfy; fi

testdciodvfynew:
@$(TOP)/support/testapp testlist ./dciodvfy "-new" $(TOP)/images/acrnema $(TOP)/test/$(CURRENT_DIR) compare iodvfynew
@$(TOP)/support/testapp testlist ./dciodvfy "-new" $(TOP)/images/dicom $(TOP)/test/$(CURRENT_DIR) compare iodvfynew
@if [ -f $(TOP)/images/disc95/us000001. ]; then $(TOP)/support/testapp testlist ./dciodvfy "-new" $(TOP)/images/disc95 $(TOP)/test/$(CURRENT_DIR) compare iodvfynew; fi
@if [ -f $(TOP)/images/disc95am/cine01. ]; then $(TOP)/support/testapp testlist ./dciodvfy "-new" $(TOP)/images/disc95am $(TOP)/test/$(CURRENT_DIR) compare iodvfynew; fi
@if [ -f $(TOP)/images/osiriscd/dicom/ctspine.dcm ]; then $(TOP)/support/testapp testlist ./dciodvfy "-new" $(TOP)/images/osiriscd $(TOP)/test/$(CURRENT_DIR) compare iodvfynew; fi
@if [ -d $(TOP)/images/wuerlim/version3 ]; then $(TOP)/support/testapp testlist ./dciodvfy "-new" $(TOP)/images/wuerlim $(TOP)/test/wuerlim/$(CURRENT_DIR) compare iodvfynew; fi

testdcfile:
@$(TOP)/support/testapp testlist ./dcfile "" $(TOP)/images/acrnema $(TOP)/test/$(CURRENT_DIR) compare file
@$(TOP)/support/testapp testlist ./dcfile "" $(TOP)/images/dicom $(TOP)/test/$(CURRENT_DIR) compare file
Expand Down Expand Up @@ -647,7 +655,7 @@ $(TOP)/images/dicom/testrgb: $(TOP)/images/dicom/testlist
testdcunrgb: $(TOP)/images/dicom/testrgb
@$(TOP)/support/testapp testrgb ./dcunrgb.script "" $(TOP)/images/dicom $(TOP)/test/$(CURRENT_DIR) compare todc

test.create:: testdchist.create testy2k.create testpbmtoovl.create testdcfile.create testdccp.create testantodc.create testpnmtodc.create testdcdirdmp.create testdcdump.create testdciodvfy.create testdcposn.create testpack.create testdcsrdump.create testdcunrgb.create
test.create:: testdchist.create testy2k.create testpbmtoovl.create testdcfile.create testdccp.create testantodc.create testpnmtodc.create testdcdirdmp.create testdcdump.create testdciodvfy.create testdciodvfynew.create testdcposn.create testpack.create testdcsrdump.create testdcunrgb.create

testy2k.create:
./testy2k.sh $(TOP)/test/$(CURRENT_DIR) create
Expand Down Expand Up @@ -708,6 +716,14 @@ testdciodvfy.create:
@if [ -f $(TOP)/images/osiriscd/dicom/ctspine.dcm ]; then $(TOP)/support/testapp testlist ./dciodvfy "" $(TOP)/images/osiriscd $(TOP)/test/$(CURRENT_DIR) create iodvfy; fi
@if [ -d $(TOP)/images/wuerlim/version3 ]; then $(TOP)/support/testapp testlist ./dciodvfy "" $(TOP)/images/wuerlim $(TOP)/test/wuerlim/$(CURRENT_DIR) create iodvfy; fi

testdciodvfynew.create:
@$(TOP)/support/testapp testlist ./dciodvfy "-new" $(TOP)/images/acrnema $(TOP)/test/$(CURRENT_DIR) create iodvfynew
@$(TOP)/support/testapp testlist ./dciodvfy "-new" $(TOP)/images/dicom $(TOP)/test/$(CURRENT_DIR) create iodvfynew
@if [ -f $(TOP)/images/disc95/us000001. ]; then $(TOP)/support/testapp testlist ./dciodvfy "-new" $(TOP)/images/disc95 $(TOP)/test/$(CURRENT_DIR) create iodvfynew; fi
@if [ -f $(TOP)/images/disc95am/cine01. ]; then $(TOP)/support/testapp testlist ./dciodvfy "-new" $(TOP)/images/disc95am $(TOP)/test/$(CURRENT_DIR) create iodvfynew; fi
@if [ -f $(TOP)/images/osiriscd/dicom/ctspine.dcm ]; then $(TOP)/support/testapp testlist ./dciodvfy "-new" $(TOP)/images/osiriscd $(TOP)/test/$(CURRENT_DIR) create iodvfynew; fi
@if [ -d $(TOP)/images/wuerlim/version3 ]; then $(TOP)/support/testapp testlist ./dciodvfy "-new" $(TOP)/images/wuerlim $(TOP)/test/wuerlim/$(CURRENT_DIR) create iodvfynew; fi

testdcfile.create:
@$(TOP)/support/testapp testlist ./dcfile "" $(TOP)/images/acrnema $(TOP)/test/$(CURRENT_DIR) create file
@$(TOP)/support/testapp testlist ./dcfile "" $(TOP)/images/dicom $(TOP)/test/$(CURRENT_DIR) create file
Expand Down
4 changes: 2 additions & 2 deletions appsrc/dcfile/antodc.cc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
static const char *CopyrightIdentifier(void) { return "@(#)antodc.cc Copyright (c) 1993-2015, David A. Clunie DBA PixelMed Publishing. All rights reserved."; }
static const char *CopyrightIdentifier(void) { return "@(#)antodc.cc Copyright (c) 1993-2021, David A. Clunie DBA PixelMed Publishing. All rights reserved."; }
#if USESTANDARDHEADERSWITHOUTEXTENSION == 1
#include <cctype>
#else
Expand Down Expand Up @@ -1995,7 +1995,7 @@ main(int argc, char *argv[])
bool success=true;
TextOutputStream log(cerr);
if (verbose) log << "******** While reading ... ********" << endl;
list.read(din,&log,verbose,0xffffffff,true,dicom_input_options.uselengthtoend,dicom_input_options.ignoreoutofordertags,dicom_input_options.useUSVRForLUTDataIfNotExplicit);
list.read(din,false/*newformat*/,&log,verbose,0xffffffff,true,dicom_input_options.uselengthtoend,dicom_input_options.ignoreoutofordertags,dicom_input_options.useUSVRForLUTDataIfNotExplicit);

if (!list.good()) {
log << list.errors()
Expand Down
2 changes: 1 addition & 1 deletion appsrc/dcfile/antodc.man
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ Display byte offset from file start and message start, in hexadecimal, and dump
.BR dcintro(1),
.BR dccp(1)
.SH AUTHOR
Copyright (c) 1993-2015, David A. Clunie DBA PixelMed Publishing. All rights reserved.
Copyright (c) 1993-2021, David A. Clunie DBA PixelMed Publishing. All rights reserved.
.SH BUGS
.LP
If there are no gantry relative image orientation and position values in
Expand Down
2 changes: 1 addition & 1 deletion appsrc/dcfile/dcacqmap.man
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ Use short names without special characters for all files created, e.g., for reco
.BR dcsort(1) ,
.BR dctable(1)
.SH AUTHOR
Copyright (c) 1993-2015, David A. Clunie DBA PixelMed Publishing. All rights reserved.
Copyright (c) 1993-2021, David A. Clunie DBA PixelMed Publishing. All rights reserved.
.SH BUGS
.LP
Currently only single-frame CT images have been tested. A different set of sub-keys below position would
Expand Down
4 changes: 2 additions & 2 deletions appsrc/dcfile/dcarith.cc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
static const char *CopyrightIdentifier(void) { return "@(#)dcarith.cc Copyright (c) 1993-2015, David A. Clunie DBA PixelMed Publishing. All rights reserved."; }
static const char *CopyrightIdentifier(void) { return "@(#)dcarith.cc Copyright (c) 1993-2021, David A. Clunie DBA PixelMed Publishing. All rights reserved."; }
#include "attrmxls.h"
#include "attrothr.h"
#include "attrval.h"
Expand Down Expand Up @@ -273,7 +273,7 @@ main(int argc, char *argv[])
bool success=true;
TextOutputStream log(cerr);
if (verbose) log << "******** While reading ... ********" << endl;
list.read(din,&log,verbose,0xffffffff,true,dicom_input_options.uselengthtoend,dicom_input_options.ignoreoutofordertags,dicom_input_options.useUSVRForLUTDataIfNotExplicit);
list.read(din,false/*newformat*/,&log,verbose,0xffffffff,true,dicom_input_options.uselengthtoend,dicom_input_options.ignoreoutofordertags,dicom_input_options.useUSVRForLUTDataIfNotExplicit);

if (!list.good()) {
if (!ignorereaderrors) {
Expand Down
2 changes: 1 addition & 1 deletion appsrc/dcfile/dcarith.man
Original file line number Diff line number Diff line change
Expand Up @@ -117,5 +117,5 @@ Invert the grayscale of the pixel values, using the BitsStored value to establis
.SH SEE ALSO
.BR dcintro(1)
.SH AUTHOR
Copyright (c) 1993-2015, David A. Clunie DBA PixelMed Publishing. All rights reserved.
Copyright (c) 1993-2021, David A. Clunie DBA PixelMed Publishing. All rights reserved.
.SH BUGS
2 changes: 1 addition & 1 deletion appsrc/dcfile/dcbriggs.cc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
static const char *CopyrightIdentifier(void) { return "@(#)dcbriggs.cc Copyright (c) 1993-2015, David A. Clunie DBA PixelMed Publishing. All rights reserved."; }
static const char *CopyrightIdentifier(void) { return "@(#)dcbriggs.cc Copyright (c) 1993-2021, David A. Clunie DBA PixelMed Publishing. All rights reserved."; }
#include "attrtype.h"
#include "attrothr.h"
#include "attrmxls.h"
Expand Down
2 changes: 1 addition & 1 deletion appsrc/dcfile/dcbriggs.man
Original file line number Diff line number Diff line change
Expand Up @@ -157,5 +157,5 @@ integer. Defaults to 30%.
.BR dcsmpte(1) ,
.BR dcintro(1)
.SH AUTHOR
Copyright (c) 1993-2015, David A. Clunie DBA PixelMed Publishing. All rights reserved.
Copyright (c) 1993-2021, David A. Clunie DBA PixelMed Publishing. All rights reserved.
.SH BUGS
4 changes: 2 additions & 2 deletions appsrc/dcfile/dcburn.cc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
static const char *CopyrightIdentifier(void) { return "@(#)dcburn.cc Copyright (c) 1993-2015, David A. Clunie DBA PixelMed Publishing. All rights reserved."; }
static const char *CopyrightIdentifier(void) { return "@(#)dcburn.cc Copyright (c) 1993-2021, David A. Clunie DBA PixelMed Publishing. All rights reserved."; }
#include "attrmxls.h"
#include "attrothr.h"
#include "mesgtext.h"
Expand Down Expand Up @@ -93,7 +93,7 @@ main(int argc, char *argv[])
bool success=true;
TextOutputStream log(cerr);
if (verbose) log << "******** While reading ... ********" << endl;
list.read(din,&log,verbose,0xffffffff,true,dicom_input_options.uselengthtoend,dicom_input_options.ignoreoutofordertags,dicom_input_options.useUSVRForLUTDataIfNotExplicit);
list.read(din,false/*newformat*/,&log,verbose,0xffffffff,true,dicom_input_options.uselengthtoend,dicom_input_options.ignoreoutofordertags,dicom_input_options.useUSVRForLUTDataIfNotExplicit);

if (!list.good()) {
if (!ignorereaderrors) {
Expand Down
2 changes: 1 addition & 1 deletion appsrc/dcfile/dcbzip2.man
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ There are no options.
.SH SEE ALSO
.BR dcunbzip2(1)
.SH AUTHOR
Copyright (c) 1993-2016, David A. Clunie DBA PixelMed Publishing. All rights reserved.
Copyright (c) 1993-2021, David A. Clunie DBA PixelMed Publishing. All rights reserved.
.SH BUGS
Previously the first two "BZ" bytes were stripped before encoding;
this is no longer performed and could result in incompatibility
Expand Down
2 changes: 1 addition & 1 deletion appsrc/dcfile/dcckovly.man
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,6 @@ There are no options.
.LP
\
.SH AUTHOR
Copyright (c) 1993-2015, David A. Clunie DBA PixelMed Publishing. All rights reserved.
Copyright (c) 1993-2021, David A. Clunie DBA PixelMed Publishing. All rights reserved.
.SH BUGS
Cannot detect non-zero high bits in encapsulated images.
6 changes: 3 additions & 3 deletions appsrc/dcfile/dccomb.cc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
static const char *CopyrightIdentifier(void) { return "@(#)dccomb.cc Copyright (c) 1993-2015, David A. Clunie DBA PixelMed Publishing. All rights reserved."; }
static const char *CopyrightIdentifier(void) { return "@(#)dccomb.cc Copyright (c) 1993-2021, David A. Clunie DBA PixelMed Publishing. All rights reserved."; }
#include "attrmxls.h"
#include "attrothr.h"
#include "attrval.h"
Expand Down Expand Up @@ -257,9 +257,9 @@ main(int argc, char *argv[])
bool success=true;
TextOutputStream log(cerr);
if (verbose) log << "******** While reading 1st dataset ... ********" << endl;
list1.read(din1,&log,verbose,0xffffffff,true,dicom_input_options1.uselengthtoend,dicom_input_options1.ignoreoutofordertags);
list1.read(din1,false/*newformat*/,&log,verbose,0xffffffff,true,dicom_input_options1.uselengthtoend,dicom_input_options1.ignoreoutofordertags);
if (verbose) log << "******** While reading 2nd dataset ... ********" << endl;
list2.read(din2,&log,verbose,0xffffffff,true,dicom_input_options2.uselengthtoend,dicom_input_options2.ignoreoutofordertags);
list2.read(din2,false/*newformat*/,&log,verbose,0xffffffff,true,dicom_input_options2.uselengthtoend,dicom_input_options2.ignoreoutofordertags);

if (!list1.good()) {
log << list1.errors()
Expand Down
4 changes: 2 additions & 2 deletions appsrc/dcfile/dccp.cc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
static const char *CopyrightIdentifier(void) { return "@(#)dccp.cc Copyright (c) 1993-2015, David A. Clunie DBA PixelMed Publishing. All rights reserved."; }
static const char *CopyrightIdentifier(void) { return "@(#)dccp.cc Copyright (c) 1993-2021, David A. Clunie DBA PixelMed Publishing. All rights reserved."; }
#include "attrmxls.h"
#include "attrseq.h"
#include "mesgtext.h"
Expand Down Expand Up @@ -176,7 +176,7 @@ main(int argc, char *argv[])
bool success=true;
TextOutputStream log(cerr);
if (verbose) log << "******** While reading ... ********" << endl;
list.read(din,&log,verbose,0xffffffff,true,dicom_input_options.uselengthtoend,dicom_input_options.ignoreoutofordertags,dicom_input_options.useUSVRForLUTDataIfNotExplicit);
list.read(din,false/*newformat*/,&log,verbose,0xffffffff,true,dicom_input_options.uselengthtoend,dicom_input_options.ignoreoutofordertags,dicom_input_options.useUSVRForLUTDataIfNotExplicit);

if (!list.good()) {
if (!ignorereaderrors) {
Expand Down
2 changes: 1 addition & 1 deletion appsrc/dcfile/dccp.man
Original file line number Diff line number Diff line change
Expand Up @@ -191,5 +191,5 @@ Keep only the selected VOI LUT Sequence Item, where the items are numbered from
.SH SEE ALSO
.BR dcintro(1),dccreate(1)
.SH AUTHOR
Copyright (c) 1993-2015, David A. Clunie DBA PixelMed Publishing. All rights reserved.
Copyright (c) 1993-2021, David A. Clunie DBA PixelMed Publishing. All rights reserved.
.SH BUGS
2 changes: 1 addition & 1 deletion appsrc/dcfile/dccreate.cc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
static const char *CopyrightIdentifier(void) { return "@(#)dccreate.cc Copyright (c) 1993-2015, David A. Clunie DBA PixelMed Publishing. All rights reserved."; }
static const char *CopyrightIdentifier(void) { return "@(#)dccreate.cc Copyright (c) 1993-2021, David A. Clunie DBA PixelMed Publishing. All rights reserved."; }
#include "attrmxls.h"
#include "attrseq.h"
#include "mesgtext.h"
Expand Down
2 changes: 1 addition & 1 deletion appsrc/dcfile/dccreate.man
Original file line number Diff line number Diff line change
Expand Up @@ -88,5 +88,5 @@ Display byte offset from file start and message start, in hexadecimal, and dump
.SH SEE ALSO
.BR dcintro(1),dccp(1),ancreate(1)
.SH AUTHOR
Copyright (c) 1993-2015, David A. Clunie DBA PixelMed Publishing. All rights reserved.
Copyright (c) 1993-2021, David A. Clunie DBA PixelMed Publishing. All rights reserved.
.SH BUGS
Loading

0 comments on commit a7c0231

Please sign in to comment.