,newTaggedValue(entry.getValue(),currentTag)
);
}
static VIntWritable determineTag(Map<String,VIntWritable> mapping,String thePath) {
VIntWritable currentTag=new VIntWritable(0);
for(String aPrefix:mapping.keySet())
if(thePath.startsWith(aPrefix))
currentTag=mapping.get(aPrefix);
return currentTag;