e70152e44cc66cc599ff6b699eb8adc07f3e656a
kent
  Sat May 24 21:09:34 2014 -0700
Adding Copyright NNNN Regents of the University of California to all files I believe with reasonable certainty were developed under UCSC employ or as part of Genome Browser copyright assignment.
diff --git src/hg/hgTracks/mafTrack.h src/hg/hgTracks/mafTrack.h
index 8be8cb6..68430be 100644
--- src/hg/hgTracks/mafTrack.h
+++ src/hg/hgTracks/mafTrack.h
@@ -1,34 +1,37 @@
 /* mafTrack.h - MAF track display */
 
+/* Copyright (C) 2009 The Regents of the University of California 
+ * See README in this or parent directory for licensing information. */
+
 #ifndef MAFTRACK_H
 #define MAFTRACK_H
 
 #ifndef MAF_H
 #include "maf.h"
 #endif
 
 struct mafPriv
 {
 void *list;
 struct customTrack *ct;
 };
 
 struct mafPriv *getMafPriv(struct track *track);
 
 /* zoom level where summary file is used */
 #define MAF_SUMMARY_VIEW 1000000
 
 /* zoom level that displays synteny breaks and nesting brackets */
 #define MAF_DETAIL_VIEW 30000
 
 void drawMafRegionDetails(struct mafAli *mafList, int height,
         int seqStart, int seqEnd, struct hvGfx *hvg, int xOff, int yOff,
         int width, MgFont *font, Color color, Color altColor,
         enum trackVisibility vis, boolean isAxt, boolean chainBreaks);
 /* Draw wiggle/density plot based on scoring things on the fly. */
 
 void drawMafChain(struct hvGfx *hvg, int xOff, int yOff, int width, int height,
                         boolean isDouble);
 /* draw single or double chain line between alignments in MAF display */
 
 #endif