Create the holidays data set. The _CAL_ variable identifies the calendar that a holiday belongs to.
data well.hol;
   input date date. holiday $ 11-25 _cal_ $;
   datalines;
09JUL96   Vacation            CAL2
04JUL96   Independence        CAL1
;